結果

問題 No.2019 Digits Filling for All Substrings
ユーザー asumo0729asumo0729
提出日時 2022-08-09 23:25:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 370 ms / 2,000 ms
コード長 1,132 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 81,956 KB
実行使用メモリ 97,312 KB
最終ジャッジ日時 2024-09-20 04:21:18
合計ジャッジ時間 6,589 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,020 KB
testcase_01 AC 34 ms
52,896 KB
testcase_02 AC 34 ms
53,524 KB
testcase_03 AC 34 ms
53,256 KB
testcase_04 AC 254 ms
93,296 KB
testcase_05 AC 190 ms
86,392 KB
testcase_06 AC 175 ms
84,916 KB
testcase_07 AC 142 ms
82,120 KB
testcase_08 AC 366 ms
91,200 KB
testcase_09 AC 364 ms
90,860 KB
testcase_10 AC 357 ms
90,972 KB
testcase_11 AC 370 ms
91,336 KB
testcase_12 AC 356 ms
91,092 KB
testcase_13 AC 348 ms
91,236 KB
testcase_14 AC 51 ms
64,424 KB
testcase_15 AC 54 ms
64,520 KB
testcase_16 AC 68 ms
73,428 KB
testcase_17 AC 53 ms
65,944 KB
testcase_18 AC 55 ms
66,524 KB
testcase_19 AC 35 ms
52,612 KB
testcase_20 AC 35 ms
54,096 KB
testcase_21 AC 35 ms
52,156 KB
testcase_22 AC 35 ms
52,560 KB
testcase_23 AC 36 ms
53,020 KB
testcase_24 AC 180 ms
86,432 KB
testcase_25 AC 239 ms
91,816 KB
testcase_26 AC 145 ms
82,368 KB
testcase_27 AC 62 ms
67,732 KB
testcase_28 AC 61 ms
66,900 KB
testcase_29 AC 229 ms
89,772 KB
testcase_30 AC 303 ms
97,312 KB
testcase_31 AC 309 ms
97,124 KB
testcase_32 AC 127 ms
80,924 KB
testcase_33 AC 238 ms
91,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

'''
ある区間を考える
その区間の?を除いた数の合計のmod3が
①0のとき
?の数=kとする
すると?の数の合計はk桁の数分とれる
(k=3なら0~999)
当然3の倍数のが1個多くとれるので
(10 ** k - 1) / 3 + 1
②1,2のとき
(10 ** k - 1) / 3

なので区間の中にある?の数分の10の累乗と10**-1の1の累乗がわかればいい
区間の中の?以外の数の和のmod3==0のときの区間の数を足せばいい(①の最後の+1の部分)
'''
mod = 998244353
N = int(input())
S = input() 
a = [0]
for s in S:
    if s == '?':
        a.append(a[-1] + 1)
    else:
        a.append(a[-1])
A = []
for i in range(N + 1):
    A.append(pow(10, a[i], mod))
acc = 0
ans = 0
for i in range(N + 1):
    ans += A[i] * acc
    acc += pow(A[i], mod - 2, mod)
    ans %= mod
ans -= (N + 1) * N // 2
ans %= mod
ans *= pow(3, mod - 2, mod)
ans %= mod

mod3 = [0 for _ in range(3)]
mod3[0] += 1
res = 0
for s in S:
    if s == '?':
        x = 0
    else:
        x = int(s)
    res += x
    mod3[res % 3] += 1
for x in mod3:
    ans += x * (x - 1) // 2
    ans %= mod
print(ans)
0