본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#231 백준 파이썬 [10833] 사과

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

 

Python Code

N = int(input())
answer = 0
for _ in range(N):
    A, B = map(int, input().split())
    answer += B % A
    
print(answer)