結果

問題 No.314 ケンケンパ
ユーザー DexctersuDexctersu
提出日時 2017-12-24 00:00:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 163 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 49,972 KB
最終ジャッジ日時 2024-05-09 22:28:57
合計ジャッジ時間 2,905 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 426 ms
49,152 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 29 ms
10,880 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 31 ms
10,880 KB
testcase_15 AC 33 ms
11,008 KB
testcase_16 AC 39 ms
11,776 KB
testcase_17 AC 70 ms
14,720 KB
testcase_18 AC 226 ms
29,412 KB
testcase_19 AC 452 ms
49,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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