結果
問題 | No.2867 NOT FOUND 404 Again |
ユーザー | mkawa2 |
提出日時 | 2024-08-30 22:51:23 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 944 ms / 3,000 ms |
コード長 | 1,666 bytes |
コンパイル時間 | 192 ms |
コンパイル使用メモリ | 82,596 KB |
実行使用メモリ | 78,948 KB |
最終ジャッジ日時 | 2024-08-30 22:51:39 |
合計ジャッジ時間 | 16,065 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
52,952 KB |
testcase_01 | AC | 38 ms
52,836 KB |
testcase_02 | AC | 36 ms
53,336 KB |
testcase_03 | AC | 914 ms
78,816 KB |
testcase_04 | AC | 782 ms
78,024 KB |
testcase_05 | AC | 923 ms
78,948 KB |
testcase_06 | AC | 738 ms
78,308 KB |
testcase_07 | AC | 877 ms
78,820 KB |
testcase_08 | AC | 890 ms
78,560 KB |
testcase_09 | AC | 867 ms
78,444 KB |
testcase_10 | AC | 741 ms
78,668 KB |
testcase_11 | AC | 924 ms
78,828 KB |
testcase_12 | AC | 904 ms
78,648 KB |
testcase_13 | AC | 944 ms
78,572 KB |
testcase_14 | AC | 864 ms
78,820 KB |
testcase_15 | AC | 894 ms
78,544 KB |
testcase_16 | AC | 769 ms
78,000 KB |
testcase_17 | AC | 887 ms
78,932 KB |
testcase_18 | AC | 800 ms
78,744 KB |
testcase_19 | AC | 897 ms
78,512 KB |
ソースコード
import sys # sys.setrecursionlimit(200005) # sys.set_int_max_str_digits(200005) int1 = lambda x: int(x)-1 pDB = lambda *x: print(*x, end="\n", file=sys.stderr) p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr) def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] # dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] # inf = -1-(-1 << 31) inf = -1-(-1 << 62) # md = 10**9+7 md = 998244353 n = SI() dp = [[0]*3 for _ in range(3)] just = 1 jx = jy = 0 for i, a in enumerate(n): a = int(a) pre, dp = dp, [[0]*3 for _ in range(3)] for x in range(3): for y in range(3): p = pre[x][y]%md if p == 0: continue for d in range(3): if (x, y, d) == (1, 0, 1): continue if d == 2: dp[y][d] += p*8 else: dp[y][d] += p if just: for d in range(i == 0, a): z = 2 if d == 0: z = 0 if d == 4: z = 1 if (jx, jy, z) == (1, 0, 1): continue dp[jy][z] += 1 if i: dp[0][1] += 1 dp[0][2] += 8 if a: if a == 4: a = 1 else: a = 2 if (jx, jy, a) == (1, 0, 1): just = 0 jx, jy = jy, a ans = just for x in range(3): ans += sum(dp[x]) print(ans%md)