티스토리 뷰
https://www.acmicpc.net/problem/1904
import sys
N = int(sys.stdin.readline())
a = 1
b = 0
for i in range(N):
temp = a % 15746
a = (a + b) % 15746
b = temp
print(a)
'Algorithm > Baekjoon' 카테고리의 다른 글
[백준] 1110 : 더하기 사이클 - Python (0) | 2020.03.12 |
---|---|
[백준] 9461 : 파도반 수열 - Python (0) | 2020.03.12 |
[백준] 1541 : 잃어버린 괄호 - Python (0) | 2020.03.11 |
[백준] 11047 : 동전 0 - Python (0) | 2020.03.11 |
[백준] 11399 : ATM - Python (0) | 2020.03.11 |