結果

問題 No.2279 OR Insertion
ユーザー ああいいああいい
提出日時 2023-04-29 11:58:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 412 ms / 2,000 ms
コード長 514 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 77,336 KB
最終ジャッジ日時 2024-11-18 09:35:52
合計ジャッジ時間 12,983 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,224 KB
testcase_01 AC 40 ms
52,084 KB
testcase_02 AC 108 ms
76,100 KB
testcase_03 AC 83 ms
75,936 KB
testcase_04 AC 381 ms
76,904 KB
testcase_05 AC 60 ms
67,776 KB
testcase_06 AC 191 ms
76,180 KB
testcase_07 AC 201 ms
76,476 KB
testcase_08 AC 112 ms
76,212 KB
testcase_09 AC 241 ms
76,672 KB
testcase_10 AC 366 ms
76,788 KB
testcase_11 AC 101 ms
76,124 KB
testcase_12 AC 293 ms
76,656 KB
testcase_13 AC 77 ms
75,772 KB
testcase_14 AC 83 ms
76,088 KB
testcase_15 AC 212 ms
76,264 KB
testcase_16 AC 57 ms
65,532 KB
testcase_17 AC 189 ms
76,180 KB
testcase_18 AC 273 ms
76,424 KB
testcase_19 AC 336 ms
76,664 KB
testcase_20 AC 205 ms
76,260 KB
testcase_21 AC 168 ms
76,456 KB
testcase_22 AC 37 ms
53,036 KB
testcase_23 AC 39 ms
53,368 KB
testcase_24 AC 38 ms
51,992 KB
testcase_25 AC 39 ms
52,480 KB
testcase_26 AC 39 ms
52,268 KB
testcase_27 AC 39 ms
52,688 KB
testcase_28 AC 38 ms
52,324 KB
testcase_29 AC 38 ms
53,212 KB
testcase_30 AC 39 ms
53,560 KB
testcase_31 AC 39 ms
52,400 KB
testcase_32 AC 411 ms
77,280 KB
testcase_33 AC 407 ms
77,148 KB
testcase_34 AC 403 ms
77,240 KB
testcase_35 AC 400 ms
77,140 KB
testcase_36 AC 408 ms
77,280 KB
testcase_37 AC 401 ms
77,124 KB
testcase_38 AC 397 ms
77,132 KB
testcase_39 AC 404 ms
77,336 KB
testcase_40 AC 412 ms
77,028 KB
testcase_41 AC 399 ms
77,200 KB
testcase_42 AC 395 ms
76,868 KB
testcase_43 AC 389 ms
76,916 KB
testcase_44 AC 389 ms
76,792 KB
testcase_45 AC 381 ms
77,328 KB
testcase_46 AC 380 ms
77,072 KB
testcase_47 AC 380 ms
77,184 KB
testcase_48 AC 380 ms
77,112 KB
testcase_49 AC 367 ms
77,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

K = pow(2,N - 1,P)
ans = 0
for i in range(1,N + 1):
    dp = [0] * (N + 2)
    U = [0] * (N + 2)
    dp[0] = 1

    for j in range(N + 1):
        if j > 0:
            U [j] += U[j-1]
            U[j] %= P
            dp[j] = U[j]
        if i + j <= N and S[-(i+j)] == "1":
            U[i + j] -= dp[j]
        U[j + 1] += dp[j]
        U[j + 1] %= P
        #print(dp[j])
    last = U[-1]
    ans += pow(2,i-1,P) * (pow(2,N -1,P) - last) % P
print(ans % P)
        
0