結果

問題 No.314 ケンケンパ
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-18 16:28:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 1,000 ms
コード長 133 bytes
コンパイル時間 445 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 65,792 KB
最終ジャッジ日時 2024-05-02 19:23:58
合計ジャッジ時間 1,811 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
65,536 KB
testcase_01 AC 46 ms
59,648 KB
testcase_02 AC 44 ms
59,520 KB
testcase_03 AC 43 ms
60,028 KB
testcase_04 AC 42 ms
59,776 KB
testcase_05 AC 42 ms
59,904 KB
testcase_06 AC 42 ms
59,648 KB
testcase_07 AC 42 ms
59,776 KB
testcase_08 AC 41 ms
59,648 KB
testcase_09 AC 46 ms
59,776 KB
testcase_10 AC 41 ms
59,776 KB
testcase_11 AC 42 ms
60,032 KB
testcase_12 AC 42 ms
59,776 KB
testcase_13 AC 42 ms
59,776 KB
testcase_14 AC 45 ms
65,792 KB
testcase_15 AC 46 ms
65,536 KB
testcase_16 AC 46 ms
65,792 KB
testcase_17 AC 50 ms
65,664 KB
testcase_18 AC 52 ms
65,408 KB
testcase_19 AC 52 ms
65,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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