結果

問題 No.2302 Carry X Times
ユーザー otoshigootoshigo
提出日時 2023-05-13 16:23:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 1,482 bytes
コンパイル時間 757 ms
コンパイル使用メモリ 78,600 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 22:09:57
合計ジャッジ時間 1,731 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
5,248 KB
testcase_01 AC 11 ms
5,376 KB
testcase_02 AC 13 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 11 ms
5,376 KB
testcase_11 AC 12 ms
5,376 KB
testcase_12 AC 12 ms
5,376 KB
testcase_13 AC 10 ms
5,376 KB
testcase_14 AC 12 ms
5,376 KB
testcase_15 AC 11 ms
5,376 KB
testcase_16 AC 12 ms
5,376 KB
testcase_17 AC 11 ms
5,376 KB
testcase_18 AC 12 ms
5,376 KB
testcase_19 AC 11 ms
5,376 KB
testcase_20 AC 11 ms
5,376 KB
testcase_21 AC 12 ms
5,376 KB
testcase_22 AC 12 ms
5,376 KB
testcase_23 AC 11 ms
5,376 KB
testcase_24 AC 12 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
using ll=long long;
#define rep(i,n) for(int i=0;i<n;i++)
#define rrep(i,n) for(int i=(n)-1;i>=0;i--)
#define all(v) v.begin(),v.end()
#define rall(v) v.rbegin(),v.rend()
template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;}
template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;}

const ll MOD=998244353;

void solve(){
    string s;
    int x;
    cin>>s>>x;
    int n=s.size();
    ll dp[20][20][2][2][2];
    rep(i,20)rep(j,20)rep(k,2)rep(l,2)rep(m,2)dp[i][j][k][l][m]=0;
    dp[0][0][0][0][0]=1;
    reverse(all(s));
    rep(i,n){
        rep(j,19){
            rep(k,2)rep(l,2)rep(m,2){
                rep(p,10)rep(q,10){
                    int fp=(p>s[i]-'0')||(p==s[i]-'0'&&l);
                    int fq=(q>s[i]-'0')||(q==s[i]-'0'&&m);
                    if(p+q+k>=10){
                        dp[i+1][j+1][1][fp][fq]+=dp[i][j][k][l][m];
                        dp[i+1][j+1][1][fp][fq]%=MOD;
                    }else{
                        dp[i+1][j][0][fp][fq]+=dp[i][j][k][l][m];
                        dp[i+1][j][0][fp][fq]%=MOD;
                    }
                }
            }
        }
    }
    ll ans=(dp[n][x][1][0][0]+dp[n][x][0][0][0])%MOD;
    cout<<ans<<"\n";
}

int main(){
    ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int t;
    cin>>t;
    while(t--){
        solve();
    }
}
0