結果

問題 No.314 ケンケンパ
ユーザー fmhrfmhr
提出日時 2015-12-07 10:39:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 413 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 88,960 KB
最終ジャッジ日時 2024-09-14 18:16:11
合計ジャッジ時間 5,612 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 29 ms
10,496 KB
testcase_08 AC 28 ms
10,496 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 29 ms
10,624 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 AC 36 ms
11,008 KB
testcase_15 AC 41 ms
11,392 KB
testcase_16 AC 58 ms
12,416 KB
testcase_17 AC 142 ms
18,432 KB
testcase_18 AC 590 ms
47,888 KB
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding:utf-8

p = 10**9+7
N = int(input())
dp = [0]*(N+10)
dp[0] = 1
dp[1] = 2
dp[2] = 2
pa_point = [0]*(N+10)
pa_point[1] = 1
pa_point[2] = 1
pa_point[3] = 1
pa_point[4] = 2
pa_point[5] = 1
for i in range(3, N):
    # パから2つめで2分岐する
    dp[i] = (dp[i-1]+pa_point[i-2])%p
    pa_point[i+2] = (pa_point[i+2]+pa_point[i])%p
    pa_point[i+3] = (pa_point[i+3]+pa_point[i])%p
print(dp[N-1]%p)
0