結果

問題 No.2772 Appearing Even Times
ユーザー kusaf_kusaf_
提出日時 2024-06-05 03:25:23
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,390 bytes
コンパイル時間 3,252 ms
コンパイル使用メモリ 248,044 KB
実行使用メモリ 163,584 KB
最終ジャッジ日時 2024-06-05 03:25:36
合計ジャッジ時間 12,232 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
163,328 KB
testcase_01 AC 116 ms
163,328 KB
testcase_02 AC 115 ms
163,328 KB
testcase_03 AC 103 ms
163,456 KB
testcase_04 AC 106 ms
163,328 KB
testcase_05 AC 115 ms
163,328 KB
testcase_06 AC 108 ms
163,328 KB
testcase_07 AC 105 ms
163,328 KB
testcase_08 RE -
testcase_09 AC 505 ms
163,584 KB
testcase_10 AC 105 ms
163,328 KB
testcase_11 AC 105 ms
163,328 KB
testcase_12 AC 477 ms
163,456 KB
testcase_13 AC 495 ms
163,584 KB
testcase_14 AC 476 ms
163,456 KB
testcase_15 AC 497 ms
163,456 KB
testcase_16 AC 475 ms
163,456 KB
testcase_17 AC 470 ms
163,456 KB
testcase_18 AC 499 ms
163,456 KB
testcase_19 AC 478 ms
163,456 KB
testcase_20 AC 467 ms
163,456 KB
testcase_21 AC 489 ms
163,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>
using namespace std;
using namespace atcoder;
using ll = long long;
using mint = modint998244353;

mint dp[10001][1024][2][2];

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  string S;
  cin >> S;

  ll N = S.size();
  dp[0][0][0][1] = 1;
  for(ll i = 0; i < N; i++) {
    ll d = S[i] - '0';
    for(ll j = 0; j < 1 << 10; j++) {
      for(ll k = 0; k < 10; k++) {
        ll nj = j ^ (1 << k);
        if(!k) {
          if(k < d) {
            dp[i + 1][nj][1][0] += dp[i][j][0][0] + dp[i][j][1][0];
            dp[i + 1][j][1][1] += dp[i][j][0][1] + dp[i][j][1][1];
          }
          if(k == d) {
            dp[i + 1][nj][0][0] += dp[i][j][0][0];
            dp[i + 1][nj][1][0] += dp[i][j][1][0];
            dp[i + 1][j][0][1] += dp[i][j][0][1];
            dp[i + 1][j][1][1] += dp[i][j][1][1];
          }
        }
        else {
          if(k < d) { dp[i + 1][nj][1][0] += dp[i][j][0][0] + dp[i][j][0][1] + dp[i][j][1][0] + dp[i][j][1][1]; }
          else if(k == d) {
            dp[i + 1][nj][1][0] += dp[i][j][1][0] + dp[i][j][1][1];
            dp[i + 1][nj][0][0] += dp[i][j][0][0] + dp[i][j][0][1];
          }
          else {
            dp[i + 1][nj][1][0] += dp[i][j][1][0] + dp[i][j][1][1];
          }
        }
      }
    }
  }

  cout << (dp[N][0][0][0] + dp[N][0][1][0]).val() << "\n";
}
0