結果
問題 | No.1136 Four Points Tour |
ユーザー | 👑 rin204 |
提出日時 | 2020-08-13 07:15:15 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 296 bytes |
コンパイル時間 | 205 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 112,164 KB |
最終ジャッジ日時 | 2024-10-09 18:57:21 |
合計ジャッジ時間 | 4,205 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
17,572 KB |
testcase_01 | AC | 32 ms
10,752 KB |
testcase_02 | AC | 31 ms
10,752 KB |
testcase_03 | AC | 30 ms
10,880 KB |
testcase_04 | AC | 30 ms
10,880 KB |
testcase_05 | AC | 30 ms
10,752 KB |
testcase_06 | AC | 31 ms
10,880 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
01_Sample03_evil.txt | -- | - |
04_Rnd_large_evil1.txt | -- | - |
04_Rnd_large_evil2.txt | -- | - |
04_Rnd_large_evil3.txt | -- | - |
04_Rnd_large_evil4.txt | -- | - |
04_Rnd_large_evil5.txt | -- | - |
04_Rnd_large_evil6.txt | -- | - |
04_Rnd_large_evil7.txt | -- | - |
04_Rnd_large_evil8.txt | -- | - |
04_Rnd_large_evil9.txt | -- | - |
04_Rnd_large_evil10.txt | -- | - |
05_Rnd_huge_evil1.txt | -- | - |
05_Rnd_huge_evil2.txt | -- | - |
05_Rnd_huge_evil3.txt | -- | - |
05_Rnd_huge_evil4.txt | -- | - |
05_Rnd_huge_evil5.txt | -- | - |
05_Rnd_huge_evil6.txt | -- | - |
05_Rnd_huge_evil7.txt | -- | - |
99_evil_01.txt | -- | - |
ソースコード
MOD = 10 ** 9 + 7 n = int(input()) dp = [[0, 0, 0, 0] for _ in range(n + 1)] dp[0][0] = 1 for i in range(1, n + 1): for j in range(4): for k in range(4): if j == k: continue dp[i][j] += dp[i - 1][k] dp[i][j] %= MOD print(dp[-1][0])