結果

問題 No.314 ケンケンパ
ユーザー DexctersuDexctersu
提出日時 2017-12-22 00:56:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 118 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 49,872 KB
最終ジャッジ日時 2024-05-09 17:06:30
合計ジャッジ時間 3,416 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 388 ms
49,024 KB
testcase_01 AC 26 ms
10,496 KB
testcase_02 AC 23 ms
10,624 KB
testcase_03 AC 24 ms
10,624 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 23 ms
10,496 KB
testcase_07 AC 23 ms
10,624 KB
testcase_08 AC 23 ms
10,624 KB
testcase_09 AC 23 ms
10,496 KB
testcase_10 AC 24 ms
10,752 KB
testcase_11 AC 24 ms
10,752 KB
testcase_12 AC 25 ms
10,624 KB
testcase_13 AC 25 ms
10,752 KB
testcase_14 AC 27 ms
10,752 KB
testcase_15 AC 28 ms
11,008 KB
testcase_16 AC 33 ms
11,520 KB
testcase_17 AC 60 ms
14,592 KB
testcase_18 AC 209 ms
29,312 KB
testcase_19 AC 411 ms
49,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
k=[0]*n
k[0]=1
k[1]=2
k[2]=2
mod=10**9+7
for i in range(3,n):
    k[i]=(k[i-2]+k[i-3])%mod
print(k[-1])
0