結果

問題 No.2772 Appearing Even Times
ユーザー Nzt3Nzt3
提出日時 2024-05-31 23:42:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 929 ms / 4,000 ms
コード長 1,292 bytes
コンパイル時間 2,171 ms
コンパイル使用メモリ 203,740 KB
実行使用メモリ 324,520 KB
最終ジャッジ日時 2024-05-31 23:42:42
合計ジャッジ時間 15,488 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
323,436 KB
testcase_01 AC 127 ms
323,464 KB
testcase_02 AC 129 ms
323,360 KB
testcase_03 AC 128 ms
323,460 KB
testcase_04 AC 128 ms
323,524 KB
testcase_05 AC 130 ms
323,544 KB
testcase_06 AC 129 ms
323,548 KB
testcase_07 AC 127 ms
323,428 KB
testcase_08 AC 925 ms
324,400 KB
testcase_09 AC 903 ms
324,376 KB
testcase_10 AC 96 ms
323,440 KB
testcase_11 AC 96 ms
323,476 KB
testcase_12 AC 897 ms
324,428 KB
testcase_13 AC 927 ms
324,396 KB
testcase_14 AC 876 ms
324,344 KB
testcase_15 AC 918 ms
324,336 KB
testcase_16 AC 929 ms
324,384 KB
testcase_17 AC 915 ms
324,520 KB
testcase_18 AC 875 ms
324,332 KB
testcase_19 AC 899 ms
324,472 KB
testcase_20 AC 882 ms
324,340 KB
testcase_21 AC 889 ms
324,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
constexpr int MOD=998244353;
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define replr(i,l,r) for(int i=(l);i<(int)(r);i++)

ll memo[10002][1<<10][2][2];
string N;
int len;

void ch(ll &a,ll b){
  a=(a+b)%MOD;
}
ll rec(int p,int s,int t,int led_0){
  if(memo[p][s][t][led_0]!=-1)return memo[p][s][t][led_0];
  if(p==len){
    if(s==0&&led_0==0)return memo[p][s][t][led_0]=1;
    return memo[p][s][t][led_0]=0;
  }
  ll ret=0;
  if(t){
    if(led_0){
      replr(i,1,N[p]){
        ch(ret,rec(p+1,s^(1<<i),0,0));
      }
      ch(ret,rec(p+1,s,0,1));
      ch(ret,rec(p+1,s^(1<<N[p]),1,0));
    }else{
      rep(i,N[p]){
        ch(ret,rec(p+1,s^(1<<i),0,0));
      }
      ch(ret,rec(p+1,s^(1<<N[p]),1,0));
    }
  }else{
    if(led_0){
      rep(i,9){
        ch(ret,rec(p+1,s^(1<<(i+1)),0,0));
      }
      ch(ret,rec(p+1,s,0,1));
    }else{
      rep(i,10){
        ch(ret,rec(p+1,s^(1<<i),0,0));
      }
    }
  }
  return memo[p][s][t][led_0]=ret;
}

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  cin>>N;
  len=N.size();
  rep(i,10002){
    rep(j,1<<10){
      rep(k,2){
        rep(l,2){
          memo[i][j][k][l]=-1;
        }
      }
    }
  }
  for(auto &i:N)i-='0';
  cout<<rec(0,0,1,1)<<'\n';
}
0