結果

問題 No.2279 OR Insertion
ユーザー miscalcmiscalc
提出日時 2023-04-21 11:26:49
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 333 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 269,908 KB
最終ジャッジ日時 2024-11-06 07:45:55
合計ジャッジ時間 23,188 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
58,948 KB
testcase_01 AC 38 ms
54,184 KB
testcase_02 AC 235 ms
79,552 KB
testcase_03 AC 129 ms
76,652 KB
testcase_04 TLE -
testcase_05 AC 74 ms
75,976 KB
testcase_06 AC 765 ms
111,604 KB
testcase_07 AC 861 ms
120,104 KB
testcase_08 AC 249 ms
79,628 KB
testcase_09 AC 1,218 ms
157,436 KB
testcase_10 TLE -
testcase_11 AC 201 ms
78,212 KB
testcase_12 AC 1,764 ms
232,104 KB
testcase_13 AC 110 ms
76,740 KB
testcase_14 AC 121 ms
76,600 KB
testcase_15 AC 952 ms
128,956 KB
testcase_16 AC 65 ms
74,904 KB
testcase_17 AC 760 ms
110,200 KB
testcase_18 AC 1,483 ms
189,908 KB
testcase_19 TLE -
testcase_20 AC 875 ms
120,896 KB
testcase_21 AC 598 ms
98,036 KB
testcase_22 AC 38 ms
53,496 KB
testcase_23 AC 38 ms
52,068 KB
testcase_24 AC 38 ms
52,912 KB
testcase_25 AC 37 ms
52,752 KB
testcase_26 AC 39 ms
52,708 KB
testcase_27 AC 39 ms
53,820 KB
testcase_28 AC 38 ms
52,568 KB
testcase_29 AC 38 ms
52,436 KB
testcase_30 AC 36 ms
53,104 KB
testcase_31 AC 37 ms
53,280 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

n = int(input())
s = input()

ans = 0
dp = [0] * (n + 1)
for k in range(n):
  dp[0] = 1
  for i in range(n):
    if i - k < 0 or s[i - k] == '0':
      dp[i + 1] = 2 * dp[i]
    else:
      dp[i + 1] = 2 * dp[i] - dp[i - k]
  ans += (pow(2, n - 1, MOD) - (dp[n] - dp[n - 1])) * pow(2, k, MOD)
  ans %= MOD
print(ans)
0