結果

問題 No.2279 OR Insertion
ユーザー shobonvipshobonvip
提出日時 2023-04-21 21:59:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 653 ms / 2,000 ms
コード長 717 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 80,708 KB
最終ジャッジ日時 2024-11-06 15:28:17
合計ジャッジ時間 18,658 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,308 KB
testcase_01 AC 40 ms
55,060 KB
testcase_02 AC 140 ms
76,308 KB
testcase_03 AC 94 ms
76,028 KB
testcase_04 AC 569 ms
79,592 KB
testcase_05 AC 73 ms
74,932 KB
testcase_06 AC 272 ms
76,940 KB
testcase_07 AC 301 ms
77,596 KB
testcase_08 AC 142 ms
76,500 KB
testcase_09 AC 364 ms
77,808 KB
testcase_10 AC 584 ms
79,468 KB
testcase_11 AC 129 ms
76,276 KB
testcase_12 AC 470 ms
78,684 KB
testcase_13 AC 90 ms
76,072 KB
testcase_14 AC 96 ms
76,156 KB
testcase_15 AC 315 ms
77,056 KB
testcase_16 AC 65 ms
70,996 KB
testcase_17 AC 275 ms
77,304 KB
testcase_18 AC 416 ms
78,236 KB
testcase_19 AC 520 ms
79,252 KB
testcase_20 AC 297 ms
77,688 KB
testcase_21 AC 233 ms
76,876 KB
testcase_22 AC 38 ms
53,344 KB
testcase_23 AC 38 ms
52,532 KB
testcase_24 AC 39 ms
52,708 KB
testcase_25 AC 38 ms
52,944 KB
testcase_26 AC 38 ms
52,624 KB
testcase_27 AC 39 ms
52,812 KB
testcase_28 AC 39 ms
52,988 KB
testcase_29 AC 39 ms
52,360 KB
testcase_30 AC 37 ms
52,728 KB
testcase_31 AC 37 ms
52,448 KB
testcase_32 AC 647 ms
79,724 KB
testcase_33 AC 646 ms
79,672 KB
testcase_34 AC 653 ms
80,692 KB
testcase_35 AC 616 ms
80,640 KB
testcase_36 AC 609 ms
80,248 KB
testcase_37 AC 641 ms
79,880 KB
testcase_38 AC 637 ms
79,752 KB
testcase_39 AC 626 ms
80,248 KB
testcase_40 AC 641 ms
80,468 KB
testcase_41 AC 641 ms
79,736 KB
testcase_42 AC 578 ms
80,324 KB
testcase_43 AC 580 ms
80,708 KB
testcase_44 AC 577 ms
79,664 KB
testcase_45 AC 603 ms
79,792 KB
testcase_46 AC 609 ms
79,540 KB
testcase_47 AC 603 ms
80,436 KB
testcase_48 AC 553 ms
80,284 KB
testcase_49 AC 553 ms
80,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
n = int(input())
s = list(map(int,input()))
# 主客転倒
r = 1
ans = 0
for i in range(1, n+1):
	dp0 = [0] * (n+1)
	dp1 = [0] * (n+1)
	dp0[0] = 1
	dp0s = [0] * (n+1)
	dp1s = [0] * (n+1)
	dp0s[0] = 1
	# j-i 以下から.
	for j in range(n):
		if j-i+1 >= 0:
			dp0[j+1] -= dp0s[j+1-i]
			dp1[j+1] -= dp1s[j+1-i]
			if s[j-i+1] == 0:
				dp0[j+1] += dp0s[j+1-i]
				dp1[j+1] += dp1s[j+1-i]
			else:
				dp1[j+1] += dp0s[j+1-i] + dp1s[j+1-i]
		dp0[j+1] += dp0s[j]
		dp1[j+1] += dp1s[j]
		dp0[j+1] %= mod
		dp1[j+1] %= mod
		dp0s[j+1] += dp0[j+1] + dp0s[j]
		dp1s[j+1] += dp1[j+1] + dp1s[j]
		dp0s[j+1] %= mod
		dp1s[j+1] %= mod
	#print(dp1[n])
	ans += dp1[n] * r
	ans %= mod
	r *= 2
	r %= mod
print(ans)
0