結果

問題 No.44 DPなすごろく
ユーザー noriocnorioc
提出日時 2023-12-02 00:14:42
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 135 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 95,608 KB
最終ジャッジ日時 2024-09-26 16:05:54
合計ジャッジ時間 9,414 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,776 KB
testcase_01 AC 37 ms
51,584 KB
testcase_02 AC 1,432 ms
77,748 KB
testcase_03 AC 99 ms
75,264 KB
testcase_04 AC 36 ms
51,712 KB
testcase_05 AC 295 ms
75,776 KB
testcase_06 AC 39 ms
57,216 KB
testcase_07 AC 56 ms
68,864 KB
testcase_08 AC 73 ms
74,924 KB
testcase_09 AC 36 ms
51,840 KB
testcase_10 AC 235 ms
75,520 KB
testcase_11 AC 54 ms
68,608 KB
testcase_12 AC 65 ms
74,880 KB
testcase_13 AC 45 ms
61,952 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def fib(n):
    if n == 1: return 1
    if n == 2: return 2
    return fib(n-1) + fib(n-2)


N = int(input())
ans = fib(N)
print(ans)
0