結果

問題 No.314 ケンケンパ
ユーザー Index197511Index197511
提出日時 2018-12-19 14:59:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 1,000 ms
コード長 136 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 67,200 KB
最終ジャッジ日時 2024-09-25 07:57:37
合計ジャッジ時間 1,763 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
65,596 KB
testcase_01 AC 42 ms
59,900 KB
testcase_02 AC 41 ms
59,696 KB
testcase_03 AC 40 ms
59,984 KB
testcase_04 AC 39 ms
60,736 KB
testcase_05 AC 40 ms
61,052 KB
testcase_06 AC 39 ms
59,816 KB
testcase_07 AC 39 ms
59,832 KB
testcase_08 AC 39 ms
59,804 KB
testcase_09 AC 39 ms
61,036 KB
testcase_10 AC 39 ms
59,772 KB
testcase_11 AC 39 ms
60,428 KB
testcase_12 AC 39 ms
60,600 KB
testcase_13 AC 40 ms
60,716 KB
testcase_14 AC 44 ms
65,660 KB
testcase_15 AC 43 ms
65,176 KB
testcase_16 AC 43 ms
65,776 KB
testcase_17 AC 44 ms
66,208 KB
testcase_18 AC 47 ms
65,672 KB
testcase_19 AC 48 ms
67,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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