結果

問題 No.2279 OR Insertion
ユーザー 👑 p-adicp-adic
提出日時 2023-07-16 16:10:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 585 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 201,888 KB
最終ジャッジ日時 2024-09-17 12:44:13
合計ジャッジ時間 16,306 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,560 KB
testcase_01 AC 35 ms
54,224 KB
testcase_02 AC 120 ms
91,088 KB
testcase_03 AC 74 ms
82,636 KB
testcase_04 AC 504 ms
189,716 KB
testcase_05 AC 53 ms
70,720 KB
testcase_06 AC 208 ms
121,352 KB
testcase_07 AC 227 ms
125,712 KB
testcase_08 AC 115 ms
91,604 KB
testcase_09 AC 300 ms
141,368 KB
testcase_10 AC 532 ms
186,456 KB
testcase_11 AC 96 ms
88,568 KB
testcase_12 AC 404 ms
162,432 KB
testcase_13 AC 75 ms
80,696 KB
testcase_14 AC 74 ms
82,520 KB
testcase_15 AC 239 ms
129,964 KB
testcase_16 AC 51 ms
66,340 KB
testcase_17 AC 218 ms
120,472 KB
testcase_18 AC 334 ms
151,496 KB
testcase_19 AC 438 ms
175,036 KB
testcase_20 AC 240 ms
126,008 KB
testcase_21 AC 174 ms
112,348 KB
testcase_22 AC 35 ms
53,324 KB
testcase_23 AC 33 ms
53,224 KB
testcase_24 AC 33 ms
52,088 KB
testcase_25 AC 30 ms
52,144 KB
testcase_26 AC 29 ms
52,860 KB
testcase_27 AC 30 ms
52,400 KB
testcase_28 AC 32 ms
53,816 KB
testcase_29 AC 30 ms
52,484 KB
testcase_30 AC 31 ms
52,612 KB
testcase_31 AC 31 ms
52,520 KB
testcase_32 AC 576 ms
201,748 KB
testcase_33 AC 582 ms
201,736 KB
testcase_34 AC 567 ms
201,752 KB
testcase_35 AC 577 ms
201,604 KB
testcase_36 AC 567 ms
201,692 KB
testcase_37 AC 585 ms
201,752 KB
testcase_38 AC 568 ms
201,720 KB
testcase_39 AC 581 ms
201,648 KB
testcase_40 AC 569 ms
201,812 KB
testcase_41 AC 566 ms
201,776 KB
testcase_42 AC 548 ms
201,520 KB
testcase_43 AC 544 ms
201,592 KB
testcase_44 AC 532 ms
201,524 KB
testcase_45 AC 567 ms
201,308 KB
testcase_46 AC 556 ms
201,888 KB
testcase_47 AC 561 ms
201,660 KB
testcase_48 AC 517 ms
201,496 KB
testcase_49 AC 542 ms
201,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R=input,range
N=int(I())
M=R(N)
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 M)%P)
0