結果

問題 No.2019 Digits Filling for All Substrings
ユーザー ShirotsumeShirotsume
提出日時 2022-02-13 11:00:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 645 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 50,432 KB
最終ジャッジ日時 2024-06-29 05:28:48
合計ジャッジ時間 28,258 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
16,000 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 1,512 ms
36,480 KB
testcase_05 AC 1,049 ms
28,672 KB
testcase_06 AC 920 ms
26,624 KB
testcase_07 AC 674 ms
22,144 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 53 ms
11,008 KB
testcase_15 AC 55 ms
10,880 KB
testcase_16 AC 167 ms
12,416 KB
testcase_17 AC 67 ms
11,264 KB
testcase_18 AC 73 ms
11,008 KB
testcase_19 AC 30 ms
10,624 KB
testcase_20 AC 29 ms
10,496 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 30 ms
10,624 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1,373 ms
22,656 KB
testcase_27 AC 105 ms
13,568 KB
testcase_28 AC 104 ms
13,440 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

s = input()

mod = 998244353
dp = [[0] * 3 for _ in range(n + 1)]


for i in range(n):
    if s[i] == '?':
        for j in range(3):
            for k in range(10):
                dp[i + 1][(j + k) % 3] += dp[i][j]
                dp[i + 1][(j + k) % 3] %= mod
        for k in range(10):
            dp[i + 1][k % 3] += 1
            dp[i + 1][k % 3] %= mod
    else:
        for j in range(3):
            dp[i + 1][(j + int(s[i])) % 3] += dp[i][j]
            dp[i + 1][(j + int(s[i])) % 3] %= mod
        dp[i + 1][int(s[i]) % 3] += 1
ans = 0

for i in range(1, n + 1):
    ans += dp[i][0]
    ans %= mod
print(ans)

    
0