보안을 그리다, 훈이

[Baekjoon/Python3] 10833번 사과 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 10833번 사과

HooNeee 2020. 12. 6. 18:23

[Baekjoon/Python3] 10833번 사과

 

www.acmicpc.net/problem/10833

 

10833번: 사과

경상북도 특산품인 사과를 학생들에게 나눠주기 위해 여러 학교에 사과를 배정하였다. 배정된 사과 개수는 학교마다 다를 수 있고, 학생 수도 학교마다 다를 수 있다. 각 학교에서는 배정된 사

www.acmicpc.net

 

n = int(input())
cnt = 0
for i in range(n):
    a, b = map(int, input().split())
    cnt += b % a
print(cnt)
Comments