https://www.acmicpc.net/problem/25304
정답
import java.io.IOException;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main{
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String str = br.readLine();
int x = Integer.parseInt(str);
String str2 = br.readLine();
int n = Integer.parseInt(str2);
StringTokenizer st;
int sum = 0;
int line=0;
for(int i=1; i<=n;i++){
st = new StringTokenizer(br.readLine()," ");
line = Integer.parseInt(st.nextToken())*Integer.parseInt(st.nextToken());
sum += line;
}
if(x==sum){
System.out.println("Yes");
}
else{
System.out.println("No");
}
}
}
'JAVA > 백준' 카테고리의 다른 글
[Java11] 15552번 : 빠른 A+B (0) | 2024.09.11 |
---|---|
[Java11] 25314번 : 코딩은 체육과목 입니다. (0) | 2024.09.11 |
[Java11] 8393번 : 합 (1) | 2024.09.11 |
[Java11] 10950번 : A+B - 3 (0) | 2024.09.11 |
[Java11] 2739번 : 구구단 (0) | 2024.09.11 |