結果

問題 No.314 ケンケンパ
ユーザー roiti46roiti46
提出日時 2015-12-05 16:14:22
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 424 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 197,248 KB
最終ジャッジ日時 2024-09-14 14:25:54
合計ジャッジ時間 6,824 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 11 ms
6,144 KB
testcase_02 AC 12 ms
6,016 KB
testcase_03 AC 11 ms
6,144 KB
testcase_04 AC 11 ms
6,144 KB
testcase_05 AC 11 ms
6,144 KB
testcase_06 AC 11 ms
6,144 KB
testcase_07 AC 11 ms
6,144 KB
testcase_08 AC 11 ms
6,016 KB
testcase_09 AC 11 ms
6,144 KB
testcase_10 AC 11 ms
6,144 KB
testcase_11 AC 12 ms
6,272 KB
testcase_12 AC 12 ms
6,144 KB
testcase_13 AC 13 ms
6,400 KB
testcase_14 AC 19 ms
7,296 KB
testcase_15 AC 23 ms
7,936 KB
testcase_16 AC 42 ms
11,008 KB
testcase_17 AC 136 ms
25,088 KB
testcase_18 AC 705 ms
97,536 KB
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#-*- coding: utf-8 -*-
mod = 10**9 + 7
N = int(raw_input())
dp = [[0] * 3 for i in xrange(N)]
# 「ケン」からスタート
dp[0][1] = 1
for i in xrange(1, N):
    #「パ」になる場合
    dp[i][0] = (dp[i - 1][1] + dp[i - 1][2]) % mod
    #1回めの「ケン」で進む場合
    dp[i][1] = dp[i - 1][0] % mod
    #2回めの「ケン」で進む場合
    dp[i][2] = dp[i - 1][1] % mod
print sum(dp[N - 1]) % mod
0