結果

問題 No.2019 Digits Filling for All Substrings
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-07-22 22:52:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 265 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 76,676 KB
最終ジャッジ日時 2024-07-04 07:25:36
合計ジャッジ時間 5,620 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,816 KB
testcase_01 AC 37 ms
53,224 KB
testcase_02 AC 37 ms
52,344 KB
testcase_03 AC 39 ms
52,432 KB
testcase_04 AC 190 ms
76,344 KB
testcase_05 AC 156 ms
76,084 KB
testcase_06 AC 149 ms
76,296 KB
testcase_07 AC 129 ms
76,268 KB
testcase_08 AC 263 ms
76,516 KB
testcase_09 AC 255 ms
76,528 KB
testcase_10 AC 225 ms
76,596 KB
testcase_11 AC 253 ms
76,676 KB
testcase_12 AC 256 ms
76,600 KB
testcase_13 AC 265 ms
76,624 KB
testcase_14 AC 65 ms
69,120 KB
testcase_15 AC 66 ms
69,456 KB
testcase_16 AC 73 ms
72,700 KB
testcase_17 AC 70 ms
71,520 KB
testcase_18 AC 67 ms
70,144 KB
testcase_19 AC 38 ms
52,668 KB
testcase_20 AC 37 ms
52,064 KB
testcase_21 AC 38 ms
52,428 KB
testcase_22 AC 38 ms
51,936 KB
testcase_23 AC 38 ms
53,004 KB
testcase_24 AC 118 ms
76,084 KB
testcase_25 AC 144 ms
76,136 KB
testcase_26 AC 100 ms
76,224 KB
testcase_27 AC 71 ms
71,108 KB
testcase_28 AC 71 ms
70,580 KB
testcase_29 AC 166 ms
76,144 KB
testcase_30 AC 220 ms
76,540 KB
testcase_31 AC 207 ms
76,296 KB
testcase_32 AC 112 ms
76,096 KB
testcase_33 AC 150 ms
76,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
S = input()
mod = 998244353

ans = 0

dp = [0]*3
for s in S:
    ndp = [0]*3

    for i in range(3):
        if dp[i] == 0:
            continue
        for j in range(10):
            if s == "?" or int(s) == j:
                x = j%3
                nx = (x+i)%3
                if nx == 0:
                    ans += dp[i]
                    ans %= mod
                ndp[nx] += dp[i]
                ndp[nx] %= mod
    
    for i in range(10):
        if s == "?" or int(s) == i:
            ndp[i%3] += 1
            if i%3 == 0:
                ans += 1
    dp = ndp

print(ans%mod)
0