結果

問題 No.2019 Digits Filling for All Substrings
ユーザー rlangevinrlangevin
提出日時 2023-11-28 12:33:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 231 ms / 2,000 ms
コード長 662 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 104,556 KB
最終ジャッジ日時 2024-09-26 12:53:40
合計ジャッジ時間 6,131 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,268 KB
testcase_01 AC 45 ms
52,960 KB
testcase_02 AC 43 ms
53,080 KB
testcase_03 AC 41 ms
52,588 KB
testcase_04 AC 138 ms
94,936 KB
testcase_05 AC 118 ms
89,736 KB
testcase_06 AC 117 ms
88,096 KB
testcase_07 AC 100 ms
84,868 KB
testcase_08 AC 177 ms
103,772 KB
testcase_09 AC 202 ms
104,232 KB
testcase_10 AC 216 ms
104,172 KB
testcase_11 AC 213 ms
104,160 KB
testcase_12 AC 212 ms
104,556 KB
testcase_13 AC 213 ms
104,036 KB
testcase_14 AC 69 ms
67,140 KB
testcase_15 AC 68 ms
69,036 KB
testcase_16 AC 70 ms
71,984 KB
testcase_17 AC 72 ms
68,916 KB
testcase_18 AC 68 ms
69,764 KB
testcase_19 AC 40 ms
52,812 KB
testcase_20 AC 39 ms
52,204 KB
testcase_21 AC 39 ms
52,956 KB
testcase_22 AC 41 ms
52,824 KB
testcase_23 AC 40 ms
52,612 KB
testcase_24 AC 140 ms
88,948 KB
testcase_25 AC 179 ms
93,972 KB
testcase_26 AC 128 ms
84,776 KB
testcase_27 AC 60 ms
66,016 KB
testcase_28 AC 60 ms
64,972 KB
testcase_29 AC 186 ms
92,612 KB
testcase_30 AC 231 ms
99,016 KB
testcase_31 AC 226 ms
98,604 KB
testcase_32 AC 123 ms
83,116 KB
testcase_33 AC 167 ms
93,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = list(input())
dp = [[0] * 3 for _ in range(N)]
mod = 998244353
for i in range(N):
    s = S[i]
    if ord("0") <= ord(s) <= ord("9"):
        s = int(s)
        for j in range(3):
            dp[i][(j + s) % 3] += dp[i-1][j]
            dp[i][(j + s) % 3] %= mod
        dp[i][s % 3] += 1
        dp[i][s % 3] %= mod
    else:
        for j in range(3):
            for k in range(10):
                dp[i][(j + k) % 3] += dp[i-1][j]
                dp[i][(j + k) % 3] %= mod
        for k in range(10):
            dp[i][k % 3] += 1
            dp[i][k % 3] %= mod

ans = 0
for i in range(N):
    ans += dp[i][0]
    ans %= mod

print(ans)
0