結果

問題 No.1964 sum = length
ユーザー monnumonnu
提出日時 2022-06-03 21:34:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 418 ms / 2,000 ms
コード長 715 bytes
コンパイル時間 3,875 ms
コンパイル使用メモリ 233,020 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-21 02:29:23
合計ジャッジ時間 12,868 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 36 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 6 ms
6,944 KB
testcase_06 AC 8 ms
6,944 KB
testcase_07 AC 10 ms
6,940 KB
testcase_08 AC 12 ms
6,944 KB
testcase_09 AC 15 ms
6,940 KB
testcase_10 AC 17 ms
6,944 KB
testcase_11 AC 18 ms
6,940 KB
testcase_12 AC 89 ms
6,940 KB
testcase_13 AC 130 ms
6,940 KB
testcase_14 AC 177 ms
6,944 KB
testcase_15 AC 197 ms
6,944 KB
testcase_16 AC 35 ms
6,940 KB
testcase_17 AC 101 ms
6,944 KB
testcase_18 AC 112 ms
6,940 KB
testcase_19 AC 70 ms
6,944 KB
testcase_20 AC 89 ms
6,944 KB
testcase_21 AC 34 ms
6,944 KB
testcase_22 AC 393 ms
6,940 KB
testcase_23 AC 379 ms
6,940 KB
testcase_24 AC 275 ms
6,940 KB
testcase_25 AC 308 ms
6,940 KB
testcase_26 AC 403 ms
6,940 KB
testcase_27 AC 331 ms
6,940 KB
testcase_28 AC 293 ms
6,940 KB
testcase_29 AC 367 ms
6,940 KB
testcase_30 AC 297 ms
6,944 KB
testcase_31 AC 410 ms
6,940 KB
testcase_32 AC 226 ms
6,940 KB
testcase_33 AC 211 ms
6,944 KB
testcase_34 AC 381 ms
6,944 KB
testcase_35 AC 244 ms
6,944 KB
testcase_36 AC 324 ms
6,940 KB
testcase_37 AC 362 ms
6,944 KB
testcase_38 AC 413 ms
6,944 KB
testcase_39 AC 303 ms
6,944 KB
testcase_40 AC 309 ms
6,944 KB
testcase_41 AC 384 ms
6,940 KB
testcase_42 AC 418 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll=long long;
using Graph=vector<vector<int>>;
#define INF 1000000000000000000
#define MOD 998244353
#define MAX 1000000

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

  int M=300;
  vector<vector<ll>> dp(n,vector<ll>(2*M+1,0));
  for(int num=1;num<=M;num++){
    int j=num-to_string(num).size()+M;
    if(0<=j&&j<=2*M){
      dp[0][j]++;
    }
  }
  for(int i=1;i<n;i++){
    for(int j=0;j<=2*M;j++){
      for(int num=1;num<=M;num++){
        int nj=j+(num-to_string(num).size()-1);
        if(0<=nj&&nj<=2*M){
          dp[i][nj]+=dp[i-1][j];
          dp[i][nj]%=MOD;
        }
      }
    }
  }

  cout<<dp[n-1][M]<<'\n';
}
0