結果

問題 No.2279 OR Insertion
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-09-11 01:48:28
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 938 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 334,588 KB
最終ジャッジ日時 2024-09-11 01:49:11
合計ジャッジ時間 41,987 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
59,640 KB
testcase_01 AC 39 ms
52,948 KB
testcase_02 AC 259 ms
105,440 KB
testcase_03 AC 141 ms
89,120 KB
testcase_04 AC 1,940 ms
303,284 KB
testcase_05 AC 73 ms
72,780 KB
testcase_06 AC 723 ms
166,292 KB
testcase_07 AC 778 ms
174,832 KB
testcase_08 AC 303 ms
107,328 KB
testcase_09 AC 1,026 ms
206,500 KB
testcase_10 AC 1,905 ms
297,116 KB
testcase_11 AC 222 ms
100,692 KB
testcase_12 AC 1,409 ms
248,588 KB
testcase_13 AC 119 ms
85,952 KB
testcase_14 AC 136 ms
88,440 KB
testcase_15 AC 884 ms
183,624 KB
testcase_16 AC 61 ms
69,508 KB
testcase_17 AC 728 ms
164,164 KB
testcase_18 AC 1,225 ms
226,372 KB
testcase_19 AC 1,637 ms
273,912 KB
testcase_20 AC 814 ms
175,880 KB
testcase_21 AC 581 ms
148,292 KB
testcase_22 AC 36 ms
52,704 KB
testcase_23 AC 37 ms
52,740 KB
testcase_24 AC 37 ms
52,676 KB
testcase_25 AC 37 ms
52,128 KB
testcase_26 AC 38 ms
52,724 KB
testcase_27 AC 37 ms
52,120 KB
testcase_28 AC 37 ms
53,776 KB
testcase_29 AC 36 ms
53,760 KB
testcase_30 AC 37 ms
53,692 KB
testcase_31 AC 37 ms
53,808 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 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/2279

MOD = 998244353



def main():
    N = int(input())
    S = input()

    dp = [[0] * N for _ in range(N)]
    cum_dp = [[0] * N for _ in range(N)]

    dp[0][0] = int(S[0])
    cum_dp[0][0] = int(S[0])

    for i in range(1, N):

        for j in reversed(range(i)):
            if int(S[j + 1]) == 1:
                dp[i][i - 1 - j] = pow(2, j + 1, MOD)
            else:
                dp[i][i - 1 - j] = cum_dp[j][i - 1 - j]
            
            dp[i][i - 1 - j] += (cum_dp[i - 1][i - 1 - j] - cum_dp[j][i - 1 - j]) % MOD
            dp[i][i - 1 - j] %= MOD
        
        dp[i][i] = int(S[0])

        for j in range(N):
            cum_dp[i][j] = (dp[i][j] + cum_dp[i - 1][j]) % MOD
    answer = 0
    for i in range(N):
        weight = pow(2, i, MOD)
        answer += (weight * dp[-1][i]) % MOD
        answer %= MOD
    print(answer)








if __name__ == "__main__":
    main()
0