結果

問題 No.2019 Digits Filling for All Substrings
ユーザー H20H20
提出日時 2022-07-22 22:57:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 968 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 96,768 KB
最終ジャッジ日時 2024-07-04 07:31:37
合計ジャッジ時間 4,758 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,840 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 42 ms
52,480 KB
testcase_04 AC 136 ms
89,404 KB
testcase_05 AC 116 ms
85,376 KB
testcase_06 AC 105 ms
84,328 KB
testcase_07 AC 101 ms
81,960 KB
testcase_08 AC 162 ms
96,512 KB
testcase_09 AC 178 ms
96,584 KB
testcase_10 AC 181 ms
96,244 KB
testcase_11 AC 173 ms
96,384 KB
testcase_12 AC 176 ms
96,768 KB
testcase_13 AC 176 ms
96,640 KB
testcase_14 AC 59 ms
66,688 KB
testcase_15 AC 60 ms
66,944 KB
testcase_16 AC 64 ms
74,220 KB
testcase_17 AC 61 ms
67,328 KB
testcase_18 AC 62 ms
67,968 KB
testcase_19 AC 38 ms
51,968 KB
testcase_20 AC 39 ms
51,840 KB
testcase_21 AC 37 ms
52,096 KB
testcase_22 AC 36 ms
51,968 KB
testcase_23 AC 36 ms
51,840 KB
testcase_24 AC 132 ms
84,736 KB
testcase_25 AC 167 ms
88,980 KB
testcase_26 AC 114 ms
82,048 KB
testcase_27 AC 60 ms
66,176 KB
testcase_28 AC 55 ms
66,048 KB
testcase_29 AC 168 ms
87,540 KB
testcase_30 AC 211 ms
93,056 KB
testcase_31 AC 201 ms
92,236 KB
testcase_32 AC 107 ms
80,640 KB
testcase_33 AC 163 ms
88,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product
n = int(input())
S = input()
mod = 998244353

def count(s):
    a = s
    n = len(a)
    ret = 0
    #配列は末から
    dp=[[0] * 3 for _ in range(n+1) ]
    for i in range(n) :
        if a[i]=='?':
            max_d = 9
            for d in range(max_d+1):
                mod3_ = d % 3
                dp[i + 1][mod3_] += 1
        else:
            d = int(a[i])
            mod3_ = d % 3
            dp[i + 1][mod3_] += 1
        #条件に合わせてDP
        for mod3 in range(3):
            if a[i]=='?':
                max_d = 9
                for d in range(max_d+1):
                    mod3_ = (mod3*10 + d) % 3
                    dp[i + 1][mod3_] = (dp[i + 1][mod3_]+dp[i][mod3])%mod
            else:
                d = int(a[i])
                mod3_ = (mod3*10 + d) % 3
                dp[i + 1][mod3_] = (dp[i + 1][mod3_]+dp[i][mod3])%mod
        ret = (ret+dp[i+1][0])%mod
    return ret%mod

print(count(S))
0