728x90
반응형
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int total = scan.nextInt();
int count = scan.nextInt();
int temp = 0;
for(int i = 0; i< count; i++) {
int price = scan.nextInt();
int num = scan.nextInt();
temp += price*num;
}
if((total-temp) == 0) {
System.out.println("Yes");
}else {
System.out.println("No");
}
}
}
728x90
반응형
'IT개발자 > 백준_Algorithm' 카테고리의 다른 글
백준 11022번 A+B -8 JAVA(자바) 문제풀이 (0) | 2023.01.30 |
---|---|
백준 2480번 주사위 세개 JAVA(자바) 문제 풀이 (0) | 2023.01.23 |
백준 3003번 킹, 퀸, 룩, 비숍, 나이트, 폰 JAVA(자바) 문제 풀이 (0) | 2023.01.08 |
백준 11021번 A+B - 7 JAVA(자바) 문제 풀이 (0) | 2022.05.24 |
백준 2742번 기찍 N JAVA(자바) 문제 풀이 (0) | 2022.05.10 |