https://www.acmicpc.net/problem/25304
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int x = sc.nextInt(); // ์์์ฆ์ ์ ํ ์ด ๊ธ์ก ์
๋ ฅ๋ฐ๊ธฐ
int n = sc.nextInt(); // ์์์ฆ์ ์ ํ ๊ตฌ๋งคํ ๋ฌผ๊ฑด ์ข
๋ฅ ์ ์
๋ ฅ๋ฐ๊ธฐ
int[] arr = new int[n];
int answer = 0;
for(int i = 0; i < n; i++){
int a = sc.nextInt(); // ๋ฌผ๊ฑด์ ๊ฐ๊ฒฉ ์
๋ ฅ๋ฐ๊ธฐ
int b = sc.nextInt(); // ๊ฐ์ ์
๋ ฅ๋ฐ๊ธฐ
arr[i] = a * b; // ๊ฐ๊ฒฉ * ๊ฐ์์ ๊ฐ์ ๋ฐฐ์ด์ ๋ด๊ธฐ
answer += arr[i]; // ๋ฐฐ์ด์ ์์๋ฅผ ๋ชจ๋ ๋ํ ๊ฒ์ answer์ ๋ด๊ธฐ
}
sc.close();
if(answer == x){ // answer์ ๊ฐ์ด ์ด ๊ธ์ก๊ณผ ๊ฐ์ ๋
System.out.println("Yes");
}
else{ // ๋ค๋ฅผ ๋
System.out.println("No");
}
}
}