結果

問題 No.2279 OR Insertion
ユーザー ああいいああいい
提出日時 2023-04-29 11:56:58
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 477 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 271,456 KB
最終ジャッジ日時 2024-11-18 09:35:25
合計ジャッジ時間 60,447 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,308 KB
testcase_01 AC 34 ms
54,380 KB
testcase_02 AC 239 ms
82,040 KB
testcase_03 AC 140 ms
77,140 KB
testcase_04 TLE -
testcase_05 AC 78 ms
76,380 KB
testcase_06 AC 693 ms
130,204 KB
testcase_07 AC 785 ms
142,760 KB
testcase_08 AC 256 ms
82,164 KB
testcase_09 AC 1,075 ms
195,204 KB
testcase_10 TLE -
testcase_11 AC 212 ms
79,976 KB
testcase_12 AC 1,575 ms
267,628 KB
testcase_13 AC 117 ms
76,836 KB
testcase_14 AC 132 ms
76,964 KB
testcase_15 AC 878 ms
156,520 KB
testcase_16 AC 72 ms
76,060 KB
testcase_17 AC 707 ms
128,592 KB
testcase_18 AC 1,324 ms
242,176 KB
testcase_19 AC 1,842 ms
268,692 KB
testcase_20 AC 804 ms
144,652 KB
testcase_21 AC 553 ms
109,704 KB
testcase_22 AC 33 ms
52,796 KB
testcase_23 AC 33 ms
53,412 KB
testcase_24 AC 33 ms
52,200 KB
testcase_25 AC 33 ms
52,056 KB
testcase_26 AC 32 ms
52,672 KB
testcase_27 AC 33 ms
52,480 KB
testcase_28 AC 33 ms
53,368 KB
testcase_29 AC 34 ms
52,552 KB
testcase_30 AC 33 ms
52,964 KB
testcase_31 AC 32 ms
52,820 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 AC 1,840 ms
270,000 KB
testcase_46 AC 1,837 ms
269,668 KB
testcase_47 AC 1,839 ms
269,968 KB
testcase_48 TLE -
testcase_49 AC 1,832 ms
269,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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]
            dp[j] = U[j]
        if i + j <= N and S[-(i+j)] == "1":
            U[i + j] -= dp[j]
        if j < N + 1:
            U[j + 1] += dp[j]
        #print(dp[j])
    last = U[-1]
    ans += pow(2,i-1,P) * (pow(2,N -1,P) - last) % P
print(ans % P)
        
0