結果

問題 No.2019 Digits Filling for All Substrings
ユーザー roarisroaris
提出日時 2022-08-05 14:38:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 587 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-09-15 10:21:46
合計ジャッジ時間 6,358 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 45 ms
58,368 KB
testcase_04 AC 182 ms
76,288 KB
testcase_05 AC 155 ms
76,544 KB
testcase_06 AC 120 ms
76,260 KB
testcase_07 AC 124 ms
76,160 KB
testcase_08 AC 240 ms
76,544 KB
testcase_09 AC 208 ms
76,672 KB
testcase_10 AC 207 ms
76,672 KB
testcase_11 AC 212 ms
76,800 KB
testcase_12 AC 207 ms
76,416 KB
testcase_13 AC 212 ms
76,672 KB
testcase_14 AC 73 ms
70,016 KB
testcase_15 AC 70 ms
68,608 KB
testcase_16 AC 85 ms
75,904 KB
testcase_17 AC 72 ms
69,888 KB
testcase_18 AC 83 ms
73,728 KB
testcase_19 AC 41 ms
51,968 KB
testcase_20 AC 41 ms
52,352 KB
testcase_21 AC 42 ms
52,224 KB
testcase_22 AC 41 ms
52,096 KB
testcase_23 AC 41 ms
51,968 KB
testcase_24 AC 216 ms
76,544 KB
testcase_25 AC 279 ms
76,544 KB
testcase_26 AC 173 ms
76,160 KB
testcase_27 AC 82 ms
76,032 KB
testcase_28 AC 79 ms
76,288 KB
testcase_29 AC 180 ms
76,288 KB
testcase_30 AC 227 ms
76,544 KB
testcase_31 AC 223 ms
76,800 KB
testcase_32 AC 122 ms
76,160 KB
testcase_33 AC 190 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
S = input()[:-1]
dp = [[0]*3 for _ in range(2)]
dp[0][0] = 1
ans = 0
MOD = 998244353

for Si in S:
    ndp = [[0]*3 for _ in range(2)]
    
    for i in range(3):
        ndp[0][i] = dp[0][i]
    
    if Si=='?':
        nums = list(range(10))
    else:
        nums = [int(Si)]
    
    for i in range(2):
        for j in range(3):
            for num in nums:
                nj = (j+num)%3
                ndp[1][nj] += dp[i][j]
                ndp[1][nj] %= MOD
    
    dp = ndp
    ans += dp[1][0]
    ans %= MOD

print(ans)
0