結果

問題 No.2019 Digits Filling for All Substrings
ユーザー ああいいああいい
提出日時 2022-07-24 16:00:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 544 bytes
コンパイル時間 1,149 ms
コンパイル使用メモリ 81,960 KB
実行使用メモリ 96,916 KB
最終ジャッジ日時 2024-07-06 10:36:51
合計ジャッジ時間 6,747 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,864 KB
testcase_01 AC 33 ms
52,364 KB
testcase_02 AC 33 ms
52,320 KB
testcase_03 AC 33 ms
52,148 KB
testcase_04 AC 100 ms
89,604 KB
testcase_05 AC 86 ms
85,248 KB
testcase_06 AC 81 ms
84,336 KB
testcase_07 AC 78 ms
81,820 KB
testcase_08 AC 128 ms
96,500 KB
testcase_09 AC 136 ms
96,448 KB
testcase_10 AC 135 ms
96,916 KB
testcase_11 AC 137 ms
96,860 KB
testcase_12 AC 141 ms
96,548 KB
testcase_13 AC 137 ms
96,864 KB
testcase_14 AC 57 ms
67,096 KB
testcase_15 AC 49 ms
66,904 KB
testcase_16 AC 53 ms
69,784 KB
testcase_17 AC 52 ms
66,988 KB
testcase_18 AC 50 ms
65,704 KB
testcase_19 AC 33 ms
52,272 KB
testcase_20 AC 34 ms
52,284 KB
testcase_21 AC 36 ms
52,512 KB
testcase_22 AC 35 ms
52,420 KB
testcase_23 AC 34 ms
52,768 KB
testcase_24 AC 99 ms
84,700 KB
testcase_25 AC 121 ms
88,696 KB
testcase_26 AC 86 ms
81,980 KB
testcase_27 AC 46 ms
66,860 KB
testcase_28 AC 51 ms
66,160 KB
testcase_29 AC 118 ms
87,564 KB
testcase_30 AC 147 ms
92,648 KB
testcase_31 AC 139 ms
92,412 KB
testcase_32 AC 78 ms
80,608 KB
testcase_33 AC 136 ms
88,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
P = 998244353

dp = [[0] * 3 for _ in range(N + 1)]
#dp[0][0] = 1

ans = 0
for i in range(1,N + 1):
    s = S[i-1]

    if s != "?":
        c = int(s)
        for j in range(3):
            dp[i][(j * 10 + c) % 3] += dp[i-1][j]
        dp[i][c % 3] += 1
    else:
        for c in range(10):
            for j in range(3):
                dp[i][(j * 10 + c) % 3] += dp[i-1][j]
            dp[i][c % 3] += 1
    for j in range(3):
        dp[i][j] %= P
    ans += dp[i][0]
    ans %= P
print(ans)
            
    
0