티스토리 뷰
📖 question
https://www.acmicpc.net/problem/10833
✍️ answer
school = int(input())
sum = 0
for i in range(school):
student, apple = map(int, input().split())
a = apple % student # 학생에게 나눠주고 남은 사과
sum += a # 시과의 합을 구함
print(sum)
'Python > BAEKJOON' 카테고리의 다른 글
5635 생일 (0) | 2022.06.05 |
---|---|
2443 별 찍기 - 6 (0) | 2022.06.03 |
10984 내 학점을 구해줘 (0) | 2022.06.01 |
5565 영수증 (0) | 2022.06.01 |
11098 첼시를 도와줘! (0) | 2022.05.31 |
댓글