結果

問題 No.314 ケンケンパ
ユーザー fumofumofunifumofumofuni
提出日時 2021-09-12 23:35:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 212 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 49,988 KB
最終ジャッジ日時 2024-06-24 20:24:56
合計ジャッジ時間 10,454 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 465 ms
49,908 KB
testcase_01 AC 438 ms
49,988 KB
testcase_02 AC 448 ms
49,880 KB
testcase_03 AC 451 ms
49,988 KB
testcase_04 AC 436 ms
49,920 KB
testcase_05 WA -
testcase_06 AC 422 ms
49,920 KB
testcase_07 AC 443 ms
49,844 KB
testcase_08 AC 448 ms
49,892 KB
testcase_09 AC 447 ms
49,920 KB
testcase_10 AC 447 ms
49,920 KB
testcase_11 AC 429 ms
49,920 KB
testcase_12 AC 438 ms
49,972 KB
testcase_13 AC 437 ms
49,920 KB
testcase_14 AC 446 ms
49,920 KB
testcase_15 AC 443 ms
49,908 KB
testcase_16 AC 449 ms
49,812 KB
testcase_17 AC 437 ms
49,920 KB
testcase_18 AC 438 ms
49,920 KB
testcase_19 AC 432 ms
49,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=1000000007
maxN=1000010
dp=[0]*maxN
dp[2]=1
dp[3]=1
dp[4]=1
for i in range(5,maxN):
    dp[i]=(dp[i-2]+dp[i-3])%mod
N=int(input())
if N==1 or N==2 :
    print(1)
else :
    print((dp[N]+dp[N-1]+dp[N-2])%mod)
0