結果

問題 No.44 DPなすごろく
ユーザー H20H20
提出日時 2020-12-08 14:38:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 5,000 ms
コード長 133 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 54,040 KB
最終ジャッジ日時 2024-09-17 14:39:40
合計ジャッジ時間 2,055 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,744 KB
testcase_01 AC 37 ms
52,028 KB
testcase_02 AC 38 ms
53,020 KB
testcase_03 AC 37 ms
53,680 KB
testcase_04 AC 39 ms
52,092 KB
testcase_05 AC 38 ms
51,956 KB
testcase_06 AC 39 ms
53,224 KB
testcase_07 AC 37 ms
51,820 KB
testcase_08 AC 38 ms
53,064 KB
testcase_09 AC 37 ms
53,132 KB
testcase_10 AC 38 ms
54,040 KB
testcase_11 AC 37 ms
52,376 KB
testcase_12 AC 38 ms
52,736 KB
testcase_13 AC 39 ms
52,228 KB
testcase_14 AC 37 ms
53,284 KB
testcase_15 AC 38 ms
51,876 KB
testcase_16 AC 37 ms
52,572 KB
testcase_17 AC 38 ms
52,528 KB
testcase_18 AC 38 ms
52,824 KB
testcase_19 AC 39 ms
52,080 KB
testcase_20 AC 38 ms
52,224 KB
testcase_21 AC 37 ms
51,700 KB
testcase_22 AC 39 ms
53,004 KB
testcase_23 AC 38 ms
52,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
DP = [0]*(N+1)
DP[0] = 1
for i in range(N):
    DP[i+1] += DP[i]
    if i<N-1:
        DP[i+2] += DP[i]
print(DP[N])
0