Baekjoon/Python3

[백준] 25304번 영수증

달의요정루나 2023. 6. 5. 13:55

https://www.acmicpc.net/problem/25304

 

25304번: 영수증

준원이는 저번 주에 살면서 처음으로 코스트코를 가 봤다. 정말 멋졌다. 그런데, 몇 개 담지도 않았는데 수상하게 높은 금액이 나오는 것이다! 준원이는 영수증을 보면서 정확하게 계산된 것

www.acmicpc.net

sum=int(input())
num=int(input())
x=0
for i in range(num):
    a,b=map(int,input().split())
    x+=a*b
if sum==x:
    print('Yes')
else:
    print('No')

'Baekjoon > Python3' 카테고리의 다른 글

[백준] 15552번 빠른 A+B  (0) 2023.06.05
[백준] 25314번 코딩은 체육과목 입니다.  (0) 2023.06.05
[백준] 8393번 합  (0) 2023.06.05
[백준] 10950번 A+B - 3  (0) 2023.06.05
[백준] 2739번 구구단  (0) 2023.06.05