結果

問題 No.2019 Digits Filling for All Substrings
ユーザー googol_S0googol_S0
提出日時 2022-07-22 21:42:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 68,864 KB
最終ジャッジ日時 2024-07-04 05:51:44
合計ジャッジ時間 3,284 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 56 ms
66,176 KB
testcase_05 AC 52 ms
64,128 KB
testcase_06 AC 51 ms
63,488 KB
testcase_07 AC 54 ms
62,976 KB
testcase_08 AC 59 ms
68,864 KB
testcase_09 AC 59 ms
66,560 KB
testcase_10 AC 58 ms
66,688 KB
testcase_11 AC 59 ms
67,072 KB
testcase_12 AC 59 ms
66,816 KB
testcase_13 AC 58 ms
67,200 KB
testcase_14 AC 46 ms
59,648 KB
testcase_15 AC 48 ms
60,672 KB
testcase_16 AC 51 ms
61,440 KB
testcase_17 AC 49 ms
61,184 KB
testcase_18 AC 48 ms
61,440 KB
testcase_19 AC 38 ms
52,480 KB
testcase_20 AC 38 ms
51,968 KB
testcase_21 AC 39 ms
52,096 KB
testcase_22 AC 38 ms
51,840 KB
testcase_23 AC 38 ms
52,096 KB
testcase_24 AC 48 ms
60,032 KB
testcase_25 AC 49 ms
60,928 KB
testcase_26 AC 47 ms
60,032 KB
testcase_27 AC 46 ms
60,800 KB
testcase_28 AC 47 ms
60,416 KB
testcase_29 AC 51 ms
62,592 KB
testcase_30 AC 52 ms
63,616 KB
testcase_31 AC 55 ms
63,616 KB
testcase_32 AC 50 ms
61,696 KB
testcase_33 AC 54 ms
63,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=input()
ANS=0
X=[0]*N
mod=998244353
for i in range(N):
  if S[i]=='?':
    X[i]=0
  else:
    X[i]=int(S[i])%3
C=[0]*3
C[0]=1
v=0
for i in range(N):
  v=(v+X[i])%3
  C[v]+=1
for i in range(3):
  ANS=(ANS+(C[i]*(C[i]-1))//2)%mod
P=0
for i in range(N):
  if S[i]=='?':
    P=(P*10+(i+1)*3)%mod
  ANS=(ANS+P)%mod
print(ANS)
0