結果

問題 No.2279 OR Insertion
ユーザー chro_96chro_96
提出日時 2023-04-22 01:33:43
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 231 ms / 2,000 ms
コード長 1,067 bytes
コンパイル時間 1,413 ms
コンパイル使用メモリ 29,952 KB
実行使用メモリ 126,848 KB
最終ジャッジ日時 2024-11-06 18:24:26
合計ジャッジ時間 7,764 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
126,848 KB
testcase_01 AC 36 ms
126,848 KB
testcase_02 AC 46 ms
126,848 KB
testcase_03 AC 39 ms
126,836 KB
testcase_04 AC 136 ms
126,848 KB
testcase_05 AC 34 ms
126,848 KB
testcase_06 AC 71 ms
126,844 KB
testcase_07 AC 75 ms
126,848 KB
testcase_08 AC 47 ms
126,844 KB
testcase_09 AC 90 ms
126,760 KB
testcase_10 AC 135 ms
126,848 KB
testcase_11 AC 46 ms
126,848 KB
testcase_12 AC 110 ms
126,848 KB
testcase_13 AC 38 ms
126,844 KB
testcase_14 AC 39 ms
126,848 KB
testcase_15 AC 78 ms
126,848 KB
testcase_16 AC 34 ms
126,848 KB
testcase_17 AC 70 ms
126,820 KB
testcase_18 AC 99 ms
126,848 KB
testcase_19 AC 121 ms
126,848 KB
testcase_20 AC 75 ms
126,848 KB
testcase_21 AC 63 ms
126,848 KB
testcase_22 AC 35 ms
126,848 KB
testcase_23 AC 35 ms
126,844 KB
testcase_24 AC 36 ms
126,848 KB
testcase_25 AC 35 ms
126,832 KB
testcase_26 AC 35 ms
126,720 KB
testcase_27 AC 34 ms
126,848 KB
testcase_28 AC 35 ms
126,848 KB
testcase_29 AC 35 ms
126,848 KB
testcase_30 AC 34 ms
126,848 KB
testcase_31 AC 35 ms
126,848 KB
testcase_32 AC 149 ms
126,848 KB
testcase_33 AC 149 ms
126,848 KB
testcase_34 AC 151 ms
126,848 KB
testcase_35 AC 156 ms
126,820 KB
testcase_36 AC 148 ms
126,820 KB
testcase_37 AC 152 ms
126,848 KB
testcase_38 AC 151 ms
126,844 KB
testcase_39 AC 147 ms
126,836 KB
testcase_40 AC 146 ms
126,848 KB
testcase_41 AC 148 ms
126,848 KB
testcase_42 AC 214 ms
126,848 KB
testcase_43 AC 213 ms
126,848 KB
testcase_44 AC 211 ms
126,848 KB
testcase_45 AC 80 ms
126,848 KB
testcase_46 AC 83 ms
126,848 KB
testcase_47 AC 83 ms
126,848 KB
testcase_48 AC 231 ms
126,848 KB
testcase_49 AC 69 ms
126,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main () {
  int n = 0;
  char s[4001] = "";
  
  int res = 0;
  
  long long ans = 0LL;
  long long mod_num = 998244353LL;
  
  long long dp[4000][4000] = {};
  long long pow2[4000] = {};
  int cnt[4000] = {};
  
  res = scanf("%d", &n);
  res = scanf("%s", s);
  
  if (n <= 1) {
    printf("%d\n", (int)(s[0]-'0'));
    return 0;
  }
  
  pow2[0] = 1LL;
  for (int i = 1; i < n; i++) {
    pow2[i] = (pow2[i-1]*2LL)%mod_num;
  }
  
  if (s[0] == '1') {
    dp[0][0] = 1LL;
    ans += pow2[n-2];
  }
  
  for (int i = 1; i < n; i++) {
    for (int j = i; j >= 0; j--) {
      if (s[j] == '1') {
        long long tmp = pow2[j];
        if (j > 0) {
          tmp += mod_num-dp[j-1][i-j];
        }
        dp[i][i-j] = tmp%mod_num;
        tmp *= pow2[i-j];
        tmp %= mod_num;
        if (i < n-1) {
          tmp *= pow2[n-2-i];
        }
        ans += tmp%mod_num;
      }
    }
    for (int j = 0; j < n; j++) {
      dp[i][j] += 2LL*dp[i-1][j];
      dp[i][j] %= mod_num;
    }
  }
  
  printf("%lld\n", ans%mod_num);
  return 0;
}
0