일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Python
- 크롤링
- dp
- 백준
- baekjun
- springboot3.x
- Algorythm
- HTML
- MongoDB
- 트리
- 16.04
- node.js
- nav-tab
- 라즈베리파이3
- NAV
- 라즈베리파이
- 13237
- 라즈비안
- 2579
- bootstrap
- raspberrypi
- 알고리즘
- CSS
- 2909
- 파이썬
- 라즈베리파이3b+
- Crawling
- algotythm
- dynaminprogramming
- ubuntu
Archives
- Today
- Total
노트
[백준] 14493번 과일노리 python 본문
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)
'알고리즘' 카테고리의 다른 글
[백준] 11399번 ATM python (0) | 2023.11.30 |
---|---|
[백준] 13565번 침투 python (1) | 2023.11.26 |
[백준] 2579번 계단 오르기 python (0) | 2023.09.22 |
[백준] 1991번 트리 순회 python (0) | 2023.09.12 |
[백준] 15903번 카드 합체 놀이 python (0) | 2023.09.03 |
Comments