結果

問題 No.2019 Digits Filling for All Substrings
ユーザー titiatitia
提出日時 2022-07-25 02:04:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 619 ms / 2,000 ms
コード長 537 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-07-06 22:02:50
合計ジャッジ時間 10,122 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 395 ms
10,880 KB
testcase_05 AC 289 ms
10,880 KB
testcase_06 AC 250 ms
10,880 KB
testcase_07 AC 189 ms
10,752 KB
testcase_08 AC 593 ms
11,136 KB
testcase_09 AC 614 ms
11,136 KB
testcase_10 AC 599 ms
11,136 KB
testcase_11 AC 604 ms
11,136 KB
testcase_12 AC 607 ms
11,136 KB
testcase_13 AC 619 ms
11,136 KB
testcase_14 AC 33 ms
10,752 KB
testcase_15 AC 33 ms
10,752 KB
testcase_16 AC 59 ms
10,752 KB
testcase_17 AC 35 ms
10,752 KB
testcase_18 AC 37 ms
10,752 KB
testcase_19 AC 28 ms
10,752 KB
testcase_20 AC 28 ms
10,624 KB
testcase_21 AC 29 ms
10,624 KB
testcase_22 AC 27 ms
10,624 KB
testcase_23 AC 28 ms
10,624 KB
testcase_24 AC 312 ms
11,008 KB
testcase_25 AC 452 ms
11,008 KB
testcase_26 AC 231 ms
10,880 KB
testcase_27 AC 63 ms
10,624 KB
testcase_28 AC 61 ms
10,624 KB
testcase_29 AC 392 ms
10,880 KB
testcase_30 AC 546 ms
11,136 KB
testcase_31 AC 528 ms
11,136 KB
testcase_32 AC 183 ms
10,880 KB
testcase_33 AC 422 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=input().strip()
mod=998244353

if S[0]=="?":
    DP=[4,3,3]
else:
    x=int(S[0])
    DP=[0,0,0]
    DP[x%3]=1

ANS=0
for s in S[1:]:
    ANS+=DP[0]
    ANS%=mod
    if s=="?":
        NDP=[4,3,3]

        for i in range(3):
            NDP[i]+=DP[i]*4
            NDP[(i+1)%3]+=DP[i]*3
            NDP[(i+2)%3]+=DP[i]*3
    else:
        x=int(s)
        NDP=[0,0,0]

        NDP[x%3]=1

        for i in range(3):
            NDP[(i+x)%3]+=DP[i]

    for i in range(3):
        DP[i]=NDP[i]%mod

print((ANS+DP[0])%mod)
0