結果

問題 No.314 ケンケンパ
ユーザー fumofumofunifumofumofuni
提出日時 2021-09-12 23:36:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 474 ms / 1,000 ms
コード長 212 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 50,044 KB
最終ジャッジ日時 2024-06-24 20:26:07
合計ジャッジ時間 10,789 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 447 ms
50,044 KB
testcase_01 AC 446 ms
49,904 KB
testcase_02 AC 447 ms
49,900 KB
testcase_03 AC 447 ms
49,892 KB
testcase_04 AC 459 ms
49,816 KB
testcase_05 AC 449 ms
49,904 KB
testcase_06 AC 450 ms
49,808 KB
testcase_07 AC 461 ms
49,828 KB
testcase_08 AC 455 ms
49,872 KB
testcase_09 AC 474 ms
49,900 KB
testcase_10 AC 456 ms
49,980 KB
testcase_11 AC 457 ms
49,832 KB
testcase_12 AC 474 ms
49,820 KB
testcase_13 AC 451 ms
49,812 KB
testcase_14 AC 450 ms
49,880 KB
testcase_15 AC 458 ms
49,828 KB
testcase_16 AC 468 ms
49,812 KB
testcase_17 AC 458 ms
49,888 KB
testcase_18 AC 471 ms
49,940 KB
testcase_19 AC 448 ms
49,996 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(N)
else :
    print((dp[N]+dp[N-1]+dp[N-2])%mod)
0