結果

問題 No.314 ケンケンパ
ユーザー phtmscgphtmscg
提出日時 2019-04-20 11:48:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 225 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 49,840 KB
最終ジャッジ日時 2024-09-25 09:50:22
合計ジャッジ時間 3,142 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 480 ms
49,208 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 RE -
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 29 ms
10,880 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 AC 32 ms
10,880 KB
testcase_15 AC 34 ms
11,008 KB
testcase_16 AC 41 ms
11,648 KB
testcase_17 AC 78 ms
14,464 KB
testcase_18 AC 265 ms
29,464 KB
testcase_19 AC 489 ms
49,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
dp = [0]*N
for i in range(1,N):
    if i == 1:
        dp[i] = 1
    elif i == 2:
        dp[i] = 1
    else:
        dp[i] = (dp[i-2]+dp[i-3])%(10**9+7)
count = dp[N-1]+dp[N-2]+dp[N-3]
print(count%(10**9+7))
0