結果

問題 No.786 京都大学の過去問
ユーザー buriburiburiburi
提出日時 2019-10-13 21:11:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 15 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 10,528 KB
実行使用メモリ 7,920 KB
最終ジャッジ日時 2023-08-22 15:49:56
合計ジャッジ時間 696 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,816 KB
testcase_01 AC 14 ms
7,920 KB
testcase_02 AC 14 ms
7,816 KB
testcase_03 AC 14 ms
7,800 KB
testcase_04 AC 14 ms
7,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(x):
    sequence = [0] * x
    sequence[0] = 1
    sequence[1] = 2
    for i in range(2, x):
        sequence[i] = sequence[i - 1] + sequence[i - 2]
    return sequence[-1]
print(f(int(input())))
0