結果

問題 No.2279 OR Insertion
ユーザー とりゐとりゐ
提出日時 2023-04-21 23:28:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 392 ms / 2,000 ms
コード長 497 bytes
コンパイル時間 444 ms
コンパイル使用メモリ 81,960 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-11-06 16:50:18
合計ジャッジ時間 12,148 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 43 ms
52,992 KB
testcase_02 AC 104 ms
76,276 KB
testcase_03 AC 80 ms
76,324 KB
testcase_04 AC 333 ms
77,184 KB
testcase_05 AC 61 ms
68,352 KB
testcase_06 AC 170 ms
76,416 KB
testcase_07 AC 182 ms
76,544 KB
testcase_08 AC 102 ms
76,288 KB
testcase_09 AC 231 ms
76,672 KB
testcase_10 AC 325 ms
76,812 KB
testcase_11 AC 95 ms
76,180 KB
testcase_12 AC 286 ms
76,788 KB
testcase_13 AC 70 ms
74,368 KB
testcase_14 AC 78 ms
76,032 KB
testcase_15 AC 202 ms
76,928 KB
testcase_16 AC 60 ms
66,432 KB
testcase_17 AC 179 ms
76,160 KB
testcase_18 AC 257 ms
76,520 KB
testcase_19 AC 320 ms
76,800 KB
testcase_20 AC 190 ms
76,672 KB
testcase_21 AC 152 ms
76,428 KB
testcase_22 AC 40 ms
51,712 KB
testcase_23 AC 40 ms
52,096 KB
testcase_24 AC 39 ms
52,096 KB
testcase_25 AC 40 ms
52,096 KB
testcase_26 AC 39 ms
52,224 KB
testcase_27 AC 39 ms
52,352 KB
testcase_28 AC 40 ms
51,968 KB
testcase_29 AC 40 ms
52,224 KB
testcase_30 AC 39 ms
51,712 KB
testcase_31 AC 40 ms
52,096 KB
testcase_32 AC 370 ms
77,156 KB
testcase_33 AC 390 ms
77,272 KB
testcase_34 AC 358 ms
77,056 KB
testcase_35 AC 364 ms
77,440 KB
testcase_36 AC 364 ms
77,184 KB
testcase_37 AC 392 ms
77,312 KB
testcase_38 AC 389 ms
77,328 KB
testcase_39 AC 362 ms
77,224 KB
testcase_40 AC 366 ms
77,152 KB
testcase_41 AC 385 ms
77,356 KB
testcase_42 AC 367 ms
77,440 KB
testcase_43 AC 371 ms
77,240 KB
testcase_44 AC 371 ms
77,696 KB
testcase_45 AC 289 ms
77,132 KB
testcase_46 AC 286 ms
77,440 KB
testcase_47 AC 285 ms
77,440 KB
testcase_48 AC 384 ms
77,440 KB
testcase_49 AC 260 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
input=lambda :stdin.readline()[:-1]

n=int(input())
s=input()

mod=998244353
ans=0
pow2=[1]*(n+1)
for i in range(1,n+1):
  pow2[i]=pow2[i-1]*2%mod

for i in range(n):
  dp=[0]*(n+1)
  dp[0]=1
  cum=[0]*(n+2)
  cum[1]=1
  res=1
  for j in range(n):
    if j>=i and s[j-i]=='1':
      ans+=cum[j-i+1]*pow2[max(0,n-2-j)]%mod*pow2[i]
      ans%=mod
      dp[j+1]=cum[j+1]-cum[j-i+1]
    else:
      dp[j+1]=cum[j+1]
    cum[j+2]=cum[j+1]+dp[j+1]
    cum[j+2]%=mod

print(ans%mod)
0