結果

問題 No.314 ケンケンパ
ユーザー solzardsolzard
提出日時 2019-08-07 19:04:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 453 ms / 1,000 ms
コード長 479 bytes
コンパイル時間 67 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 65,296 KB
最終ジャッジ日時 2024-07-18 18:46:58
合計ジャッジ時間 2,621 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 453 ms
64,440 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 24 ms
10,880 KB
testcase_04 AC 24 ms
10,496 KB
testcase_05 AC 24 ms
10,624 KB
testcase_06 AC 24 ms
10,624 KB
testcase_07 AC 24 ms
10,496 KB
testcase_08 AC 24 ms
10,752 KB
testcase_09 AC 25 ms
10,880 KB
testcase_10 AC 24 ms
10,752 KB
testcase_11 AC 25 ms
10,880 KB
testcase_12 AC 24 ms
10,624 KB
testcase_13 AC 24 ms
10,752 KB
testcase_14 AC 26 ms
10,880 KB
testcase_15 AC 28 ms
11,264 KB
testcase_16 AC 34 ms
12,160 KB
testcase_17 AC 62 ms
16,000 KB
testcase_18 AC 207 ms
36,744 KB
testcase_19 AC 408 ms
65,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# No.314 ケンケンパ
def main():
    N = int(input())
    MOD = 10 ** 9 + 7
    # dp[i][j] := count on j-th position doing movement i
    dp = [[0] * N for _ in range(3)]
    dp[0][0] = 1
    for i in range(1, N):
        dp[0][i] = dp[2][i - 1]  # ケン
        dp[1][i] = dp[0][i - 1]  # ケンケン
        dp[2][i] = (dp[0][i - 1] + dp[1][i - 1]) % MOD  # パー
    ans = (dp[0][-1] + dp[1][-1] + dp[2][-1]) % MOD
    print(ans)


if __name__ == "__main__":
    main()
0