728x90
문제
https://www.acmicpc.net/problem/25304
풀이
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int tot = Integer.parseInt(br.readLine());
int n = Integer.parseInt(br.readLine());
int sum = 0;
for (int i = 0; i < n; i++) {
String[] str = br.readLine().split(" ");
sum+=Integer.parseInt(str[0])*Integer.parseInt(str[1]);
}
System.out.println(sum==tot?"Yes":"No");
}
}
'백준 문제풀기 > 반복문' 카테고리의 다른 글
[Java] 백준 11022 A+B - 8 (0) | 2022.11.14 |
---|---|
[Java] 백준 11021 A+B-7 (0) | 2022.11.14 |
[Java] 백준 8393 합 (0) | 2022.11.14 |
[Java] 백준 10950 A+B - 3 (0) | 2022.11.14 |
[Java] 백준 2739 구구단 (0) | 2022.11.14 |