結果
問題 | No.2772 Appearing Even Times |
ユーザー | FplusFplusF |
提出日時 | 2024-05-31 23:14:45 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,398 bytes |
コンパイル時間 | 3,316 ms |
コンパイル使用メモリ | 248,908 KB |
実行使用メモリ | 163,588 KB |
最終ジャッジ日時 | 2024-05-31 23:15:05 |
合計ジャッジ時間 | 19,178 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
163,492 KB |
testcase_01 | AC | 47 ms
163,468 KB |
testcase_02 | AC | 48 ms
163,392 KB |
testcase_03 | AC | 47 ms
163,432 KB |
testcase_04 | AC | 47 ms
163,424 KB |
testcase_05 | AC | 46 ms
163,516 KB |
testcase_06 | AC | 47 ms
163,552 KB |
testcase_07 | AC | 47 ms
163,368 KB |
testcase_08 | RE | - |
testcase_09 | AC | 1,138 ms
163,360 KB |
testcase_10 | AC | 44 ms
163,320 KB |
testcase_11 | AC | 46 ms
163,356 KB |
testcase_12 | AC | 1,236 ms
163,584 KB |
testcase_13 | AC | 1,256 ms
163,588 KB |
testcase_14 | AC | 1,264 ms
163,456 KB |
testcase_15 | AC | 1,226 ms
163,492 KB |
testcase_16 | AC | 1,235 ms
163,420 KB |
testcase_17 | AC | 1,237 ms
163,392 KB |
testcase_18 | AC | 1,226 ms
163,352 KB |
testcase_19 | AC | 1,204 ms
163,540 KB |
testcase_20 | AC | 1,194 ms
163,484 KB |
testcase_21 | AC | 1,224 ms
163,400 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll=long long; using pll=pair<ll,ll>; using tll=tuple<ll,ll,ll>; using ld=long double; const ll INF=(1ll<<60); #define rep(i,n) for (ll i=0;i<(ll)(n);i++) #define all(v) v.begin(),v.end() template<class T> inline bool chmin(T &a,T b){ if(a>b){ a=b; return true; } return false; } template<class T> inline bool chmax(T &a,T b){ if(a<b){ a=b; return true; } return false; } #include<atcoder/modint> using mint=atcoder::modint998244353; mint dp[10001][2][2][1<<10]; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); string s; cin >> s; ll n=(ll)s.size(); dp[0][0][0][0]=1; rep(i,n){ rep(j,1<<10){ rep(k,10){ rep(l,2){ ll x=l|(k!=0),y=j; if(x==1) y^=1<<k; if(k<s[i]-'0'){ dp[i+1][1][x][y]+=dp[i][0][l][j]; dp[i+1][1][x][y]+=dp[i][1][l][j]; }else if(k==s[i]-'0'){ dp[i+1][0][x][y]+=dp[i][0][l][j]; dp[i+1][1][x][y]+=dp[i][1][l][j]; }else{ dp[i+1][1][x][y]+=dp[i][1][l][j]; } } } } } cout << (dp[n][0][1][0]+dp[n][1][1][0]).val() << '\n'; }