結果

問題 No.44 DPなすごろく
ユーザー 310icecrystal310icecrystal
提出日時 2023-07-06 07:32:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 5,000 ms
コード長 75 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 87,116 KB
実行使用メモリ 71,600 KB
最終ジャッジ日時 2023-09-27 08:31:21
合計ジャッジ時間 3,420 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
71,468 KB
testcase_01 AC 62 ms
71,132 KB
testcase_02 AC 63 ms
71,416 KB
testcase_03 AC 63 ms
71,348 KB
testcase_04 AC 65 ms
71,344 KB
testcase_05 AC 63 ms
71,348 KB
testcase_06 AC 67 ms
71,600 KB
testcase_07 AC 65 ms
71,396 KB
testcase_08 AC 64 ms
71,144 KB
testcase_09 AC 63 ms
71,140 KB
testcase_10 AC 64 ms
71,536 KB
testcase_11 AC 62 ms
71,320 KB
testcase_12 AC 65 ms
71,520 KB
testcase_13 AC 65 ms
71,364 KB
testcase_14 AC 64 ms
71,336 KB
testcase_15 AC 64 ms
71,600 KB
testcase_16 AC 62 ms
71,132 KB
testcase_17 AC 64 ms
71,584 KB
testcase_18 AC 64 ms
71,508 KB
testcase_19 AC 65 ms
71,536 KB
testcase_20 AC 62 ms
71,528 KB
testcase_21 AC 62 ms
71,520 KB
testcase_22 AC 60 ms
71,568 KB
testcase_23 AC 62 ms
71,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

F = [1,1]
for _ in range(60):
	F.append(F[-1]+F[-2])
print(F[int(input())])
0