結果

問題 No.314 ケンケンパ
ユーザー sue_charosue_charo
提出日時 2017-04-14 16:29:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,050 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 215,168 KB
最終ジャッジ日時 2024-07-18 15:16:31
合計ジャッジ時間 7,036 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 30 ms
10,880 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 31 ms
10,880 KB
testcase_13 AC 32 ms
10,880 KB
testcase_14 AC 39 ms
11,904 KB
testcase_15 AC 44 ms
12,800 KB
testcase_16 AC 66 ms
15,872 KB
testcase_17 AC 170 ms
31,232 KB
testcase_18 AC 708 ms
108,544 KB
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
import sys
sys.setrecursionlimit(10 ** 9)
mod = 10 ** 9 + 7

N = int(input())
# 状態遷移 けん2回目→ぱ、けん1回目→けん2回目 or ぱ、ぱ→けん1回目

memo = [[0] * N for __ in range(3)]


def solve():
    if N == 1:
        return 1

    # state=0 ken2nd, state=1 ken1st, state=2 pa
    def move(state=1, now=2):
        global memo

        if now == N:
            if state == 0:
                return 1
            elif state == 1:
                return 2
            elif state == 2:
                return 1

        if memo[state][now] != 0:
            return memo[state][now]
        else:
            if state == 0:
                ret = move(2, now + 1)
            elif state == 1:
                ret = move(0, now + 1) + move(2, now + 1)
            elif state == 2:
                ret = move(1, now + 1)
            
            if ret >= mod:
                ret %= mod
            
            memo[state][now] = ret
            return ret

    return move()

print(solve() % (10 ** 9 + 7))
0