結果

問題 No.2019 Digits Filling for All Substrings
ユーザー H20H20
提出日時 2022-07-22 23:11:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 578 ms / 2,000 ms
コード長 1,351 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 129,536 KB
最終ジャッジ日時 2024-07-04 07:53:10
合計ジャッジ時間 10,683 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 44 ms
52,608 KB
testcase_04 AC 391 ms
111,232 KB
testcase_05 AC 307 ms
100,608 KB
testcase_06 AC 273 ms
98,304 KB
testcase_07 AC 214 ms
92,032 KB
testcase_08 AC 495 ms
128,768 KB
testcase_09 AC 556 ms
129,024 KB
testcase_10 AC 537 ms
129,408 KB
testcase_11 AC 547 ms
129,408 KB
testcase_12 AC 557 ms
129,024 KB
testcase_13 AC 550 ms
129,536 KB
testcase_14 AC 87 ms
76,800 KB
testcase_15 AC 90 ms
76,928 KB
testcase_16 AC 111 ms
79,104 KB
testcase_17 AC 91 ms
77,312 KB
testcase_18 AC 88 ms
76,928 KB
testcase_19 AC 36 ms
52,224 KB
testcase_20 AC 37 ms
52,352 KB
testcase_21 AC 37 ms
52,608 KB
testcase_22 AC 37 ms
52,352 KB
testcase_23 AC 37 ms
52,224 KB
testcase_24 AC 346 ms
98,944 KB
testcase_25 AC 468 ms
109,440 KB
testcase_26 AC 271 ms
92,160 KB
testcase_27 AC 105 ms
80,512 KB
testcase_28 AC 101 ms
80,384 KB
testcase_29 AC 438 ms
106,624 KB
testcase_30 AC 578 ms
119,680 KB
testcase_31 AC 561 ms
118,272 KB
testcase_32 AC 239 ms
89,088 KB
testcase_33 AC 456 ms
108,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def count(s):
    a = s
    n = len(a)
    ret = 0
    i = 0

    #配列は末から
    dp=[[[0] * 3 for _ in range(2)] for _ in range(n+1) ]
    dp[0][1][0] = 1

    #条件に合わせてDP
    for i in range(n) :
        for leading0, mod3 in product(range(2), range(3)):
            if a[i]=='?':
                max_d = 9
                for d in range(max_d+1):
                    mod3_ = (mod3*10 + d) % 3
                    leading0_ = leading0 and d==0
                    dp[i + 1][leading0_][mod3_] = (dp[i + 1][leading0_][mod3_]+dp[i][leading0][mod3])%mod
            else:
                d = int(a[i])
                leading0_ = leading0 and d==0
                mod3_ = (mod3*10 + d) % 3
                dp[i + 1][leading0_][mod3_] = (dp[i + 1][leading0_][mod3_]+dp[i][leading0][mod3])%mod
        if i>=1:
            if a[i]=='?':
                max_d = 9
                for d in range(max_d+1):
                    mod3_ = d % 3
                    leading0_ = d==0
                    dp[i + 1][0][mod3_] += 1
            else:
                d = int(a[i])
                mod3_ = d % 3
                leading0_ = d==0
                dp[i + 1][0][mod3_] += 1
        ret = (ret+dp[i+1][0][0]+dp[i+1][1][0])%mod
    return ret%mod

print(count(S))
0