結果

問題 No.2019 Digits Filling for All Substrings
ユーザー 👑 KazunKazun
提出日時 2022-07-22 23:09:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 96,128 KB
最終ジャッジ日時 2024-07-04 07:50:11
合計ジャッジ時間 3,928 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 37 ms
51,584 KB
testcase_03 AC 38 ms
52,332 KB
testcase_04 AC 104 ms
89,088 KB
testcase_05 AC 88 ms
83,840 KB
testcase_06 AC 87 ms
82,816 KB
testcase_07 AC 79 ms
81,160 KB
testcase_08 AC 128 ms
96,128 KB
testcase_09 AC 144 ms
95,644 KB
testcase_10 AC 145 ms
95,872 KB
testcase_11 AC 143 ms
95,352 KB
testcase_12 AC 137 ms
95,488 KB
testcase_13 AC 137 ms
95,104 KB
testcase_14 AC 53 ms
66,560 KB
testcase_15 AC 55 ms
67,200 KB
testcase_16 AC 68 ms
76,284 KB
testcase_17 AC 56 ms
68,608 KB
testcase_18 AC 57 ms
68,520 KB
testcase_19 AC 37 ms
52,096 KB
testcase_20 AC 36 ms
51,968 KB
testcase_21 AC 37 ms
51,968 KB
testcase_22 AC 38 ms
52,096 KB
testcase_23 AC 41 ms
51,584 KB
testcase_24 AC 97 ms
82,304 KB
testcase_25 AC 115 ms
85,760 KB
testcase_26 AC 85 ms
80,256 KB
testcase_27 AC 48 ms
68,000 KB
testcase_28 AC 50 ms
67,968 KB
testcase_29 AC 116 ms
85,172 KB
testcase_30 AC 139 ms
89,856 KB
testcase_31 AC 145 ms
89,856 KB
testcase_32 AC 85 ms
79,488 KB
testcase_33 AC 129 ms
86,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(x):
    if x=="?":
        return -1
    else:
        return int(x)

N=int(input())
S=["*"]+list(map(f,input()))

Ans=0
Y=[0,0,0]
Mod=998244353
for i in range(1,N+1):
    X=Y.copy()
    Y=[0,0,0]
    if S[i]==-1:
        for c in range(10):
            Y[c%3]+=1
            for d in [0,1,2]:
                Y[(d+c)%3]+=X[d]
    else:
        Y[S[i]%3]+=1
        for d in [0,1,2]:
            Y[(d+S[i])%3]+=X[d]

    Y=[Y[0]%Mod, Y[1]%Mod, Y[2]%Mod]
    Ans+=Y[0]

print(Ans%Mod)
0