結果

問題 No.2279 OR Insertion
ユーザー sotanishysotanishy
提出日時 2023-04-21 22:53:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 406 ms / 2,000 ms
コード長 606 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 78,012 KB
最終ジャッジ日時 2024-11-06 16:20:58
合計ジャッジ時間 12,330 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 41 ms
52,864 KB
testcase_02 AC 105 ms
76,288 KB
testcase_03 AC 75 ms
75,904 KB
testcase_04 AC 347 ms
77,312 KB
testcase_05 AC 59 ms
67,072 KB
testcase_06 AC 174 ms
76,800 KB
testcase_07 AC 180 ms
76,544 KB
testcase_08 AC 101 ms
76,416 KB
testcase_09 AC 234 ms
76,836 KB
testcase_10 AC 327 ms
77,312 KB
testcase_11 AC 96 ms
76,488 KB
testcase_12 AC 303 ms
77,288 KB
testcase_13 AC 69 ms
73,472 KB
testcase_14 AC 80 ms
76,032 KB
testcase_15 AC 205 ms
76,652 KB
testcase_16 AC 56 ms
65,408 KB
testcase_17 AC 180 ms
76,528 KB
testcase_18 AC 256 ms
76,672 KB
testcase_19 AC 319 ms
77,312 KB
testcase_20 AC 188 ms
76,488 KB
testcase_21 AC 152 ms
76,672 KB
testcase_22 AC 40 ms
51,968 KB
testcase_23 AC 39 ms
52,096 KB
testcase_24 AC 40 ms
51,968 KB
testcase_25 AC 41 ms
52,224 KB
testcase_26 AC 40 ms
52,224 KB
testcase_27 AC 40 ms
52,480 KB
testcase_28 AC 40 ms
52,352 KB
testcase_29 AC 42 ms
51,968 KB
testcase_30 AC 41 ms
52,224 KB
testcase_31 AC 40 ms
52,480 KB
testcase_32 AC 362 ms
77,440 KB
testcase_33 AC 389 ms
77,952 KB
testcase_34 AC 356 ms
77,552 KB
testcase_35 AC 368 ms
77,732 KB
testcase_36 AC 366 ms
77,568 KB
testcase_37 AC 400 ms
77,712 KB
testcase_38 AC 406 ms
77,568 KB
testcase_39 AC 369 ms
77,440 KB
testcase_40 AC 362 ms
77,440 KB
testcase_41 AC 386 ms
77,440 KB
testcase_42 AC 372 ms
78,012 KB
testcase_43 AC 369 ms
77,440 KB
testcase_44 AC 368 ms
77,480 KB
testcase_45 AC 301 ms
77,632 KB
testcase_46 AC 298 ms
77,312 KB
testcase_47 AC 298 ms
77,520 KB
testcase_48 AC 363 ms
77,440 KB
testcase_49 AC 288 ms
77,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod = 998244353
N = int(input())
S = list(map(int, input().rstrip()))
pow2 = [1]*N
for i in range(1, N):
    pow2[i] = 2*pow2[i-1] % mod
ans = 0
for k in range(N):
    dp = [0] * (N+1)
    dp[0] = 1
    cumsum = [0] * (N+2)
    cnt = 0
    for i in range(1, N+1):
        cumsum[i] = (cumsum[i-1] + dp[i-1]) % mod

        if i-k-1 >= 0 and S[i-k-1] == 1:
            dp[i] = (cumsum[i] - cumsum[i-k]) % mod
            cnt = (cnt + cumsum[i-k] * pow2[max(0, N-i-1)]) % mod
        else:
            dp[i] = cumsum[i]
    ans = (ans + cnt * pow2[k]) % mod
print(ans)
0