結果

問題 No.314 ケンケンパ
ユーザー fmhrfmhr
提出日時 2015-12-07 10:02:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 1,000 ms
コード長 580 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 74,368 KB
最終ジャッジ日時 2024-09-14 18:15:41
合計ジャッジ時間 2,095 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
73,984 KB
testcase_01 AC 39 ms
51,456 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 43 ms
52,224 KB
testcase_06 AC 39 ms
51,712 KB
testcase_07 AC 40 ms
51,840 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 39 ms
51,968 KB
testcase_10 AC 39 ms
51,840 KB
testcase_11 AC 40 ms
52,096 KB
testcase_12 AC 40 ms
52,608 KB
testcase_13 AC 40 ms
52,736 KB
testcase_14 AC 44 ms
59,136 KB
testcase_15 AC 45 ms
58,752 KB
testcase_16 AC 45 ms
58,736 KB
testcase_17 AC 46 ms
59,776 KB
testcase_18 AC 54 ms
66,176 KB
testcase_19 AC 63 ms
74,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding:utf-8

p = 1000000000+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+1):
    # print(i,dp[i-1],pa_point[i-2],'ans:',dp[i-1]+pa_point[i-2]%p)
    # print(i,pa_point)
    dp[i] = (dp[i-1]+pa_point[i-2])%p
    if pa_point[i]>0 and i >2:
        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(pa_point)
    # print(dpoint)
# print(dp)
# print(pa_point)
print(dp[N-1]%p)
0