結果

問題 No.2279 OR Insertion
ユーザー jianglyjiangly
提出日時 2023-04-21 21:46:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 367 ms / 2,000 ms
コード長 408 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,876 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-11-06 15:16:05
合計ジャッジ時間 11,544 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,480 KB
testcase_01 AC 42 ms
52,608 KB
testcase_02 AC 103 ms
76,160 KB
testcase_03 AC 79 ms
76,288 KB
testcase_04 AC 333 ms
77,184 KB
testcase_05 AC 60 ms
65,152 KB
testcase_06 AC 171 ms
76,288 KB
testcase_07 AC 171 ms
76,160 KB
testcase_08 AC 99 ms
76,160 KB
testcase_09 AC 218 ms
76,416 KB
testcase_10 AC 303 ms
76,800 KB
testcase_11 AC 92 ms
76,288 KB
testcase_12 AC 262 ms
76,928 KB
testcase_13 AC 71 ms
71,680 KB
testcase_14 AC 74 ms
74,112 KB
testcase_15 AC 192 ms
76,288 KB
testcase_16 AC 57 ms
63,104 KB
testcase_17 AC 167 ms
76,160 KB
testcase_18 AC 245 ms
76,672 KB
testcase_19 AC 301 ms
77,056 KB
testcase_20 AC 184 ms
76,416 KB
testcase_21 AC 149 ms
76,288 KB
testcase_22 AC 41 ms
51,968 KB
testcase_23 AC 42 ms
51,712 KB
testcase_24 AC 41 ms
51,968 KB
testcase_25 AC 41 ms
52,096 KB
testcase_26 AC 41 ms
52,096 KB
testcase_27 AC 40 ms
52,224 KB
testcase_28 AC 41 ms
52,224 KB
testcase_29 AC 40 ms
52,224 KB
testcase_30 AC 42 ms
52,224 KB
testcase_31 AC 45 ms
51,968 KB
testcase_32 AC 342 ms
77,056 KB
testcase_33 AC 367 ms
77,056 KB
testcase_34 AC 341 ms
77,184 KB
testcase_35 AC 364 ms
77,056 KB
testcase_36 AC 362 ms
77,056 KB
testcase_37 AC 358 ms
77,056 KB
testcase_38 AC 356 ms
77,312 KB
testcase_39 AC 357 ms
77,312 KB
testcase_40 AC 339 ms
77,312 KB
testcase_41 AC 363 ms
77,056 KB
testcase_42 AC 336 ms
77,056 KB
testcase_43 AC 335 ms
76,928 KB
testcase_44 AC 336 ms
77,056 KB
testcase_45 AC 282 ms
77,056 KB
testcase_46 AC 277 ms
77,056 KB
testcase_47 AC 283 ms
77,184 KB
testcase_48 AC 337 ms
77,568 KB
testcase_49 AC 266 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
P = 998244353

pw = 1
ans = 0
tot = pow(2, N-1, P)
for k in range(N) :
    dp = [0] * (N+1)
    s = [0] * (N+1)
    dp[0] = 1
    for i in range(N) :
        s[i+1] = (s[i] + dp[i]) % P
        dp[i+1] = s[i+1]
        if i - k >= 0 and S[i-k] == '1' :
            dp[i+1] = (dp[i+1] - s[i-k+1] + P) % P
    ans = (ans + (tot - dp[N] + P) * pw) % P
    pw = 2 * pw % P
print(ans)
0