結果

問題 No.2019 Digits Filling for All Substrings
ユーザー tassei903tassei903
提出日時 2022-07-22 22:40:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 866 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 115,260 KB
最終ジャッジ日時 2024-07-04 07:12:15
合計ジャッジ時間 4,936 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 37 ms
52,608 KB
testcase_03 AC 38 ms
52,608 KB
testcase_04 AC 162 ms
102,284 KB
testcase_05 AC 132 ms
94,312 KB
testcase_06 AC 130 ms
92,032 KB
testcase_07 AC 114 ms
87,476 KB
testcase_08 AC 207 ms
114,944 KB
testcase_09 AC 210 ms
115,132 KB
testcase_10 AC 205 ms
115,088 KB
testcase_11 AC 205 ms
115,132 KB
testcase_12 AC 206 ms
115,260 KB
testcase_13 AC 205 ms
114,924 KB
testcase_14 AC 61 ms
69,396 KB
testcase_15 AC 61 ms
68,864 KB
testcase_16 AC 73 ms
78,072 KB
testcase_17 AC 64 ms
70,272 KB
testcase_18 AC 64 ms
71,040 KB
testcase_19 AC 37 ms
52,480 KB
testcase_20 AC 38 ms
52,352 KB
testcase_21 AC 38 ms
52,352 KB
testcase_22 AC 38 ms
52,352 KB
testcase_23 AC 38 ms
52,480 KB
testcase_24 AC 125 ms
93,824 KB
testcase_25 AC 156 ms
100,904 KB
testcase_26 AC 110 ms
88,252 KB
testcase_27 AC 74 ms
79,136 KB
testcase_28 AC 75 ms
79,112 KB
testcase_29 AC 149 ms
98,816 KB
testcase_30 AC 182 ms
108,208 KB
testcase_31 AC 176 ms
107,644 KB
testcase_32 AC 101 ms
85,496 KB
testcase_33 AC 150 ms
99,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
n = ni()
def f(x):
    if x == "?":
        return [4,3,3]
    z = [0,0,0]
    z[int(x)%3] += 1
    return z
mod = 998244353
s = [f(i) for i in input()[::-1]]

dp = [[0 for i in range(3)] for k in range(1+n)]
for i in range(n):
    for j in range(3):
        for k in range(3):
            dp[i+1][j] += dp[i][(j-k)%3]*s[i][k]
            dp[i+1][j] %= mod
    for k in range(3):
        dp[i+1][k] += s[i][k]
        dp[i+1][k] %= mod
ans = 0
for i in range(1,n+1):
    ans += dp[i][0]
    ans %= mod
print(ans)
0