*문제 출처는 백준에 있습니다.
문제 제목: 영수증 / 25304번 (브론즈 4단계)
문제 사이트: https://www.acmicpc.net/problem/25304
문제 설명
나의 풀이
x = int(input())
n = int(input())
receipt = []
for _ in range(n):
a, b = map(int, input().split())
receipt.append(a * b)
if x == sum(receipt):
print("Yes")
else:
print("No")
※ 알아야 할 것
구현문제이다!
'코딩테스트(프로그래머스 & 백준) > 백준-Python' 카테고리의 다른 글
백준 / 거짓말 / 1043번 / Python (1) | 2024.11.18 |
---|---|
백준 / 기타줄 / 1049번 / Python (0) | 2024.11.17 |
백준 / 농장 관리 / 1245번 / Python (1) | 2024.11.14 |
백준 / 시간 관리 / 1263번 / Python (2) | 2024.11.13 |
백준 / 달팽이 / 1913번 / Python (1) | 2024.11.08 |