結果

問題 No.2279 OR Insertion
ユーザー 👑 p-adicp-adic
提出日時 2023-07-16 16:13:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 591 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 81,716 KB
実行使用メモリ 201,932 KB
最終ジャッジ日時 2024-09-17 12:44:32
合計ジャッジ時間 16,780 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,244 KB
testcase_01 AC 38 ms
52,992 KB
testcase_02 AC 122 ms
91,120 KB
testcase_03 AC 81 ms
82,548 KB
testcase_04 AC 521 ms
189,704 KB
testcase_05 AC 54 ms
71,392 KB
testcase_06 AC 212 ms
121,080 KB
testcase_07 AC 226 ms
125,540 KB
testcase_08 AC 112 ms
91,652 KB
testcase_09 AC 289 ms
141,256 KB
testcase_10 AC 491 ms
186,432 KB
testcase_11 AC 107 ms
88,408 KB
testcase_12 AC 404 ms
162,516 KB
testcase_13 AC 77 ms
80,596 KB
testcase_14 AC 84 ms
82,284 KB
testcase_15 AC 257 ms
130,136 KB
testcase_16 AC 57 ms
67,468 KB
testcase_17 AC 216 ms
120,048 KB
testcase_18 AC 363 ms
151,864 KB
testcase_19 AC 443 ms
174,800 KB
testcase_20 AC 228 ms
126,092 KB
testcase_21 AC 180 ms
112,264 KB
testcase_22 AC 33 ms
53,120 KB
testcase_23 AC 32 ms
53,448 KB
testcase_24 AC 34 ms
52,212 KB
testcase_25 AC 33 ms
53,828 KB
testcase_26 AC 34 ms
53,664 KB
testcase_27 AC 35 ms
52,776 KB
testcase_28 AC 33 ms
52,964 KB
testcase_29 AC 33 ms
51,880 KB
testcase_30 AC 33 ms
52,412 KB
testcase_31 AC 32 ms
53,732 KB
testcase_32 AC 560 ms
201,728 KB
testcase_33 AC 565 ms
201,812 KB
testcase_34 AC 571 ms
201,932 KB
testcase_35 AC 566 ms
201,524 KB
testcase_36 AC 576 ms
201,676 KB
testcase_37 AC 588 ms
201,504 KB
testcase_38 AC 576 ms
201,856 KB
testcase_39 AC 575 ms
201,788 KB
testcase_40 AC 567 ms
201,728 KB
testcase_41 AC 562 ms
201,728 KB
testcase_42 AC 537 ms
201,304 KB
testcase_43 AC 542 ms
201,644 KB
testcase_44 AC 557 ms
201,540 KB
testcase_45 AC 578 ms
201,612 KB
testcase_46 AC 591 ms
201,460 KB
testcase_47 AC 588 ms
201,772 KB
testcase_48 AC 537 ms
201,516 KB
testcase_49 AC 552 ms
201,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R=input,range
N=int(I())
A=[[0]*N for i in R(N+1)]
B=[0]*N
S=I()
P=998244353
p=[pow(2,i,P)for i in R(N)]
for i in R(1,N+1):
	s=S[N-i]>"0"
	for j in R(i):A[i][j]=B[j]=(B[j]+(S[N-i]>"0" and j>0)*(p[max(0,i-j-2)]-A[i-j-1][j])+[A[i-1][j],p[max(0,i-2)]][1>j and S[N-i]>"0"])%P
print(sum(p[j]*A[N][j]for j in R(N))%P)
0