일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 안드로이드
- 순열
- 11054
- 11기
- LCS
- 6603
- 백준
- 나머지
- Kotlin
- itertools
- 1260
- expo
- 괄호
- Android
- 앱
- 11053
- 최소공배수
- permutation
- 파이썬
- Python
- lcm
- 코틀린
- 홈화면
- 11057
- 1182
- Combination
- 9095
- 매일11시
- 뒤로가기
- 코테
Archives
- Today
- Total
목록14501 (1)
황소개발자
백준 14501 파이썬 python : 퇴사 @@황소처럼 우직하게@@ 재귀로 간단구현
import sys input = sys.stdin.readline n = int(input()) days = [] for i in range(n): days.append(list(map(int, input().split()))) ans = -999999999 def go(day, total): global ans if day == n: # n에 알맞게 도착했을 때, 정답이 될 수 있다. ans = max(ans, total) return if day > n: # n을 초과한다면 범위 안에 일을 못끝내므로, 정답이 될 수 없다. return go(day + 1, total) # 이번 day는 일을 하지 않고 그냥 넘어간다! go(day + days[day][0], total + days[day][1]) ..
백준 문제 풀이
2020. 2. 28. 20:08