結果
問題 | No.2437 Fragile Multiples of 11 |
ユーザー | 👑 potato167 |
提出日時 | 2023-08-15 23:33:16 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 826 bytes |
コンパイル時間 | 2,187 ms |
コンパイル使用メモリ | 206,044 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-03 09:53:55 |
合計ジャッジ時間 | 3,060 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 1 ms
6,944 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,944 KB |
testcase_22 | AC | 2 ms
6,940 KB |
testcase_23 | AC | 1 ms
6,944 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 2 ms
6,940 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll = long long; #define all(p) p.begin(),p.end() #define rep(i,a,b) for(int i=(int)a;i<(int)b;i++) const int mod=998244353; int main(){ int N; cin>>N; string X; cin>>X; int M=11; vector<ll> dp(M); int val=0; rep(i,0,N){ vector<ll> n_dp(M); if(i) dp[0]++; rep(j,0,M) rep(k,0,10){ if((2*j-k+M)%M==0) continue; n_dp[(k-j+M)%M]+=dp[j]; } rep(k,0,X[i]-'0'){ if((2*val-k+M)%M==0) continue; n_dp[(k-val+M)%M]++; } val=((int)(X[i]-'0')+M-val)%M; swap(n_dp,dp); for(auto &x:dp) x%=mod; } ll ans=dp[0]; vector<int> p(N+1); rep(i,0,N) p[i+1]=((int)(X[i]-'0')*(1-2*(i%2))+p[i]); if(val%M==0){ ans++; rep(i,0,N){ int a=p[i]; int b=p[N]-p[i+1]; int c=(a-b)%M; if((c+M)%M==0){ ans--; break; } } } cout<<ans<<"\n"; }