結果

問題 No.2279 OR Insertion
ユーザー tamatotamato
提出日時 2023-04-21 22:00:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 485 ms / 2,000 ms
コード長 588 bytes
コンパイル時間 679 ms
コンパイル使用メモリ 82,704 KB
実行使用メモリ 80,420 KB
最終ジャッジ日時 2024-11-06 15:29:41
合計ジャッジ時間 14,199 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,612 KB
testcase_01 AC 39 ms
52,620 KB
testcase_02 AC 109 ms
76,216 KB
testcase_03 AC 79 ms
75,812 KB
testcase_04 AC 433 ms
79,344 KB
testcase_05 AC 62 ms
75,572 KB
testcase_06 AC 209 ms
76,852 KB
testcase_07 AC 221 ms
76,700 KB
testcase_08 AC 107 ms
76,092 KB
testcase_09 AC 272 ms
77,204 KB
testcase_10 AC 415 ms
79,500 KB
testcase_11 AC 102 ms
76,036 KB
testcase_12 AC 341 ms
78,216 KB
testcase_13 AC 76 ms
75,840 KB
testcase_14 AC 77 ms
75,848 KB
testcase_15 AC 234 ms
76,852 KB
testcase_16 AC 53 ms
67,932 KB
testcase_17 AC 196 ms
76,788 KB
testcase_18 AC 313 ms
77,992 KB
testcase_19 AC 388 ms
79,008 KB
testcase_20 AC 223 ms
76,980 KB
testcase_21 AC 183 ms
76,368 KB
testcase_22 AC 39 ms
52,340 KB
testcase_23 AC 38 ms
52,652 KB
testcase_24 AC 38 ms
52,340 KB
testcase_25 AC 39 ms
52,196 KB
testcase_26 AC 39 ms
52,564 KB
testcase_27 AC 38 ms
52,016 KB
testcase_28 AC 39 ms
53,224 KB
testcase_29 AC 39 ms
53,160 KB
testcase_30 AC 39 ms
52,572 KB
testcase_31 AC 40 ms
51,708 KB
testcase_32 AC 485 ms
80,360 KB
testcase_33 AC 479 ms
80,280 KB
testcase_34 AC 481 ms
79,952 KB
testcase_35 AC 476 ms
80,368 KB
testcase_36 AC 466 ms
80,088 KB
testcase_37 AC 473 ms
80,236 KB
testcase_38 AC 453 ms
80,332 KB
testcase_39 AC 479 ms
80,052 KB
testcase_40 AC 471 ms
80,336 KB
testcase_41 AC 471 ms
80,144 KB
testcase_42 AC 438 ms
80,068 KB
testcase_43 AC 439 ms
80,420 KB
testcase_44 AC 435 ms
79,984 KB
testcase_45 AC 424 ms
80,208 KB
testcase_46 AC 416 ms
80,160 KB
testcase_47 AC 426 ms
80,036 KB
testcase_48 AC 430 ms
80,056 KB
testcase_49 AC 413 ms
80,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
mod = 998244353

N = int(input())
S = input().rstrip('\n')

ans = 0
for k in range(1, N + 1):
    dp = [0] * N
    cs = [0]
    for i in range(N):
        if i + 1 - k < 0:
            dp[i] = (cs[-1] + 1) % mod
        else:
            if S[i + 1 - k] == "0":
                dp[i] = (cs[-1] + 1) % mod
            else:
                dp[i] = (cs[-1] - cs[-k]) % mod
        cs.append((cs[-1] + dp[i]) % mod)
    num = (pow(2, N - 1, mod) - dp[-1]) % mod
    ans = (ans + (num * pow(2, k - 1, mod)) % mod) % mod
    #print(k, num, dp)
print(ans)
0