https://www.acmicpc.net/problem/25304
풀이
X = int(input())
N = int(input())
sum = 0
for i in range(N):
a, b = map(int, input().split())
sum += a * b
if X == sum:
print("Yes")
else:
print("No")
'Python > Baekjoon' 카테고리의 다른 글
백준 11021번 : A+B - 7 (0) | 2022.10.06 |
---|---|
백준 15552번 : 빠른 A+B (0) | 2022.10.06 |
백준 8393번 : 합 (0) | 2022.10.06 |
백준 10950번 : A+B - 3 (0) | 2022.10.06 |
백준 2739번 : 구구단 (0) | 2022.10.06 |