結果

問題 No.2019 Digits Filling for All Substrings
ユーザー 👑 rin204rin204
提出日時 2022-07-26 19:53:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 1,006 ms
コンパイル使用メモリ 81,152 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-07-16 10:26:01
合計ジャッジ時間 4,980 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,328 KB
testcase_01 AC 40 ms
51,328 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 115 ms
75,976 KB
testcase_05 AC 93 ms
75,768 KB
testcase_06 AC 88 ms
75,904 KB
testcase_07 AC 83 ms
75,720 KB
testcase_08 AC 120 ms
76,032 KB
testcase_09 AC 136 ms
76,160 KB
testcase_10 AC 138 ms
76,160 KB
testcase_11 AC 138 ms
76,160 KB
testcase_12 AC 140 ms
76,192 KB
testcase_13 AC 139 ms
76,076 KB
testcase_14 AC 63 ms
66,560 KB
testcase_15 AC 62 ms
66,304 KB
testcase_16 AC 66 ms
72,704 KB
testcase_17 AC 61 ms
66,816 KB
testcase_18 AC 63 ms
68,224 KB
testcase_19 AC 38 ms
51,584 KB
testcase_20 AC 39 ms
52,096 KB
testcase_21 AC 39 ms
51,584 KB
testcase_22 AC 37 ms
52,096 KB
testcase_23 AC 38 ms
51,456 KB
testcase_24 AC 114 ms
75,648 KB
testcase_25 AC 138 ms
75,708 KB
testcase_26 AC 97 ms
75,648 KB
testcase_27 AC 52 ms
65,920 KB
testcase_28 AC 56 ms
66,304 KB
testcase_29 AC 132 ms
76,092 KB
testcase_30 AC 159 ms
75,944 KB
testcase_31 AC 155 ms
75,776 KB
testcase_32 AC 91 ms
75,668 KB
testcase_33 AC 155 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

n = int(input())
S = input()

dp = [0, 0, 0]
ans = 0
for s in S:
    if s == "?":
        lst = list(range(10))
    else:
        lst = [int(s)]
    for x in lst:
        ans += dp[-x % 3]
        if x % 3 == 0:
            ans += 1
        ans %= MOD
    ndp = [0] * 3
    for x in lst:
        ndp[x % 3] += 1
        for i in range(3):
            ndp[(i + x) % 3] += dp[i]
            ndp[(i + x) % 3] %= MOD
    dp = ndp
print(ans)
0