結果

問題 No.1964 sum = length
ユーザー nyyanyya
提出日時 2022-06-03 23:18:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 2,206 bytes
コンパイル時間 1,451 ms
コンパイル使用メモリ 169,192 KB
実行使用メモリ 814,536 KB
最終ジャッジ日時 2024-09-21 03:23:51
合計ジャッジ時間 9,302 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
23,512 KB
testcase_01 AC 11 ms
18,448 KB
testcase_02 AC 151 ms
98,284 KB
testcase_03 AC 10 ms
18,424 KB
testcase_04 AC 17 ms
23,472 KB
testcase_05 AC 24 ms
28,292 KB
testcase_06 AC 30 ms
33,336 KB
testcase_07 AC 40 ms
38,516 KB
testcase_08 AC 45 ms
43,484 KB
testcase_09 AC 53 ms
48,520 KB
testcase_10 AC 66 ms
53,436 KB
testcase_11 AC 82 ms
58,416 KB
testcase_12 AC 386 ms
223,332 KB
testcase_13 AC 578 ms
318,440 KB
testcase_14 AC 825 ms
428,364 KB
testcase_15 AC 964 ms
483,400 KB
testcase_16 AC 142 ms
93,396 KB
testcase_17 AC 451 ms
253,320 KB
testcase_18 AC 509 ms
283,460 KB
testcase_19 AC 309 ms
188,476 KB
testcase_20 AC 351 ms
203,344 KB
testcase_21 AC 135 ms
88,456 KB
testcase_22 MLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i=0;i<(n);i++)
typedef long long ll;
bool chmin(ll& a,ll b){if(a>b){a=b; return 1;} return 0;}
bool chmax(ll& a,ll b){if(a<b){a=b; return 1;} return 0;}

int main(){
    int n;
    cin >> n;

    ll dp[n+2][800][800];

    rep(i,800){
        rep(j,800){
            rep(k,n+2){
                dp[k][i][j]=0;
            }
        }
    }

    dp[1][1][1]=1;
    dp[1][10][1]=-1;
    dp[1][10][2]=1;
    dp[1][100][2]=-1;
    dp[1][100][3]=1;

    //for(int i=1;i<500;i++){
    //    if(i<10) dp[1][i][1]=1;
    //    else if(i<100) dp[1][i][2]=1;
    //    else dp[1][i][3]=1;
    //}

    for(int k=1;k<=n;k++){
        for(int i=1;i<800;i++){
            for(int j=1;j<800;j++){
                dp[k][i][j]+=dp[k][i-1][j];
                dp[k][i][j]%=998244353;

                if(i+1>=800 || j+2>=800) break;
                dp[k+1][i+1][j+2]+=dp[k][i][j];
                dp[k+1][i+1][j+2]%=998244353;

                if(i+10>=800 || j+2>=800) break;
                dp[k+1][i+10][j+2]+=998244353-dp[k][i][j];
                dp[k+1][i+10][j+2]%=998244353;

                if(i+10>=800 || j+3>=800) break;
                dp[k+1][i+10][j+3]+=dp[k][i][j];
                dp[k+1][i+10][j+3]%=998244353;

                if(i+100>=800 || j+3>=800) break;
                dp[k+1][i+100][j+3]+=998244353-dp[k][i][j];
                dp[k+1][i+100][j+3]%=998244353;

                if(i+100>=800 || j+4>=800) break;
                dp[k+1][i+100][j+4]+=dp[k][i][j];
                dp[k+1][i+100][j+4]%=998244353;


                //for(int add_a=1;add_a<500;add_a++){
                //    int add_l;
                //    if(add_a<10) add_l=2;
                //    else if(add_a<100) add_l=3;
                //    else add_l=4;
                //
                //    if(i+add_a>=500 || j+add_l>=500) break;
                //    dp[k+1][i+add_a][j+add_l]+=dp[k][i][j];
                //    dp[k+1][i+add_a][j+add_l]%=998244353;
                //}
            }
        }
    }

    ll ans=0;
    for(int i=1;i<800;i++){
        ans += dp[n][i][i];
        ans %=998244353;
    }

    cout << ans << endl;
    return 0;
}
0