노트

[백준] 14493번 과일노리 python 본문

알고리즘

[백준] 14493번 과일노리 python

_Myway 2023. 10. 1. 14:27
n=int(input())
bot=[]
cur=0
for i in range(n):
    a, b=map(int, input().split())
    bot.append([a, b])
cur+=bot[0][1]
i=1
while i<n:
    cur+=1
    if cur%(bot[i][0]+bot[i][1])>=bot[i][1]:
        i+=1
    else:
        cur+=(bot[i][1]-cur%(bot[i][0]+bot[i][1])-1)
print(cur+1)
Comments