結果
問題 | No.314 ケンケンパ |
ユーザー | Mario |
提出日時 | 2019-07-07 22:06:28 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 556 bytes |
コンパイル時間 | 664 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 763,904 KB |
最終ジャッジ日時 | 2024-10-05 13:34:14 |
合計ジャッジ時間 | 3,977 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
import sys sys.setrecursionlimit(1000000) n = int(input()) memo = {} memo[(1, 0)] = 0 memo[(1, 1)] = 1 memo[(1, 2)] = 0 memo[(2, 0)] = 1 memo[(2, 1)] = 0 memo[(2, 2)] = 1 memo[(3, 0)] = 1 memo[(3, 1)] = 1 memo[(3, 2)] = 0 def dp(*t): if t in memo: return memo[t] else: memo[t] = dp_inner(*t) return memo[t] def dp_inner(i, k): if k == 2: return dp(i-1, 0) elif k == 1: return dp(i-1, 2) + dp(i-1, 0) else: return dp(i-1, 1) print((dp(n, 0) + dp(n, 1) + dp(n, 2)) % (10**9+7))