結果

問題 No.741 AscNumber(Easy)
ユーザー umezoumezo
提出日時 2021-07-13 03:16:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 515 ms / 2,000 ms
コード長 695 bytes
コンパイル時間 2,066 ms
コンパイル使用メモリ 201,236 KB
実行使用メモリ 160,544 KB
最終ジャッジ日時 2024-07-02 06:05:17
合計ジャッジ時間 10,436 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 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 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 492 ms
153,280 KB
testcase_36 AC 216 ms
68,696 KB
testcase_37 AC 255 ms
80,080 KB
testcase_38 AC 251 ms
79,192 KB
testcase_39 AC 211 ms
67,408 KB
testcase_40 AC 288 ms
90,304 KB
testcase_41 AC 445 ms
140,100 KB
testcase_42 AC 241 ms
75,604 KB
testcase_43 AC 173 ms
55,636 KB
testcase_44 AC 351 ms
110,404 KB
testcase_45 AC 380 ms
118,852 KB
testcase_46 AC 468 ms
145,856 KB
testcase_47 AC 83 ms
27,632 KB
testcase_48 AC 469 ms
145,984 KB
testcase_49 AC 393 ms
122,440 KB
testcase_50 AC 55 ms
19,584 KB
testcase_51 AC 183 ms
58,192 KB
testcase_52 AC 515 ms
160,544 KB
testcase_53 AC 513 ms
160,544 KB
testcase_54 AC 509 ms
158,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;

ll dp[1000100][2][10];
const int MOD=1e9+7;

int main() {
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int n;
  cin>>n;
  string N="1";
  rep(i,n) N+='0';
  
  dp[0][0][0]=1;
  rep(i,n+1){
    int Ni=N[i]-'0';
    rep(j,2) rep(k,10) rep(x,10){
      int j2=j,k2=k;
      
      if(x<k2) continue;
      k2=x;
        
      if(!j2 && (x>Ni)) continue;
      if(x<Ni) j2=1;

      dp[i+1][j2][k2]=(dp[i+1][j2][k2]+dp[i][j][k])%MOD;
    }
  }
  ll ans=0;
  rep(i,10) ans=(ans+dp[n+1][1][i])%MOD;
  cout<<ans<<endl;
    
  return 0;
}
0