結果

問題 No.2019 Digits Filling for All Substrings
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-08-20 03:03:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 499 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 102,348 KB
最終ジャッジ日時 2024-10-08 15:56:29
合計ジャッジ時間 5,541 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,712 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 139 ms
91,324 KB
testcase_05 AC 118 ms
88,320 KB
testcase_06 AC 109 ms
87,296 KB
testcase_07 AC 98 ms
84,224 KB
testcase_08 AC 180 ms
102,348 KB
testcase_09 AC 192 ms
99,864 KB
testcase_10 AC 193 ms
100,008 KB
testcase_11 AC 192 ms
99,508 KB
testcase_12 AC 194 ms
99,772 KB
testcase_13 AC 196 ms
100,148 KB
testcase_14 AC 58 ms
66,560 KB
testcase_15 AC 60 ms
66,944 KB
testcase_16 AC 72 ms
71,552 KB
testcase_17 AC 62 ms
66,944 KB
testcase_18 AC 61 ms
67,456 KB
testcase_19 AC 36 ms
51,712 KB
testcase_20 AC 39 ms
51,968 KB
testcase_21 AC 35 ms
51,712 KB
testcase_22 AC 35 ms
51,840 KB
testcase_23 AC 34 ms
52,224 KB
testcase_24 AC 132 ms
87,040 KB
testcase_25 AC 161 ms
89,348 KB
testcase_26 AC 106 ms
83,328 KB
testcase_27 AC 52 ms
66,560 KB
testcase_28 AC 54 ms
66,432 KB
testcase_29 AC 162 ms
88,700 KB
testcase_30 AC 204 ms
93,984 KB
testcase_31 AC 207 ms
93,816 KB
testcase_32 AC 105 ms
81,920 KB
testcase_33 AC 168 ms
88,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


n=int(input())
s=[0]+list(input())
for i in range(1,n+1):
    if s[i]=="?":s[i]=-1
    else:s[i]=int(s[i])
dp=[[0,0,0] for i in range(n+3)]

mod=998244353

for i in range(1,n+1):
    for j in range(3):
        if s[i]>=0:
            dp[i][j]+=dp[i-1][(j-s[i])%3]
            dp[i][j]%=mod
            if j==s[i]%3:dp[i][j]+=1
        else:
            for x in range(10):
                dp[i][j]+=dp[i-1][(j-x)%3]
                dp[i][j]%=mod
                if j==x%3:dp[i][j]+=1
ans=0
for i in range(1,n+1):
    ans+=dp[i][0]
    ans%=mod
print(ans)


0