結果

問題 No.741 AscNumber(Easy)
ユーザー ありあり
提出日時 2023-01-31 12:03:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 595 ms / 2,000 ms
コード長 1,768 bytes
コンパイル時間 716 ms
コンパイル使用メモリ 79,156 KB
実行使用メモリ 161,676 KB
最終ジャッジ日時 2024-06-30 16:11:17
合計ジャッジ時間 12,708 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
159,832 KB
testcase_01 AC 75 ms
159,620 KB
testcase_02 AC 80 ms
159,752 KB
testcase_03 AC 77 ms
159,728 KB
testcase_04 AC 75 ms
159,564 KB
testcase_05 AC 75 ms
159,772 KB
testcase_06 AC 77 ms
159,572 KB
testcase_07 AC 75 ms
159,540 KB
testcase_08 AC 112 ms
159,672 KB
testcase_09 AC 66 ms
159,716 KB
testcase_10 AC 65 ms
159,596 KB
testcase_11 AC 66 ms
159,668 KB
testcase_12 AC 66 ms
159,756 KB
testcase_13 AC 65 ms
159,584 KB
testcase_14 AC 65 ms
159,660 KB
testcase_15 AC 65 ms
159,676 KB
testcase_16 AC 65 ms
159,668 KB
testcase_17 AC 65 ms
159,696 KB
testcase_18 AC 65 ms
159,756 KB
testcase_19 AC 64 ms
159,688 KB
testcase_20 AC 64 ms
159,696 KB
testcase_21 AC 65 ms
159,672 KB
testcase_22 AC 64 ms
159,716 KB
testcase_23 AC 64 ms
159,552 KB
testcase_24 AC 65 ms
159,696 KB
testcase_25 AC 64 ms
159,768 KB
testcase_26 AC 64 ms
159,752 KB
testcase_27 AC 65 ms
159,748 KB
testcase_28 AC 65 ms
159,680 KB
testcase_29 AC 65 ms
159,720 KB
testcase_30 AC 65 ms
159,708 KB
testcase_31 AC 65 ms
159,616 KB
testcase_32 AC 66 ms
159,740 KB
testcase_33 AC 65 ms
159,776 KB
testcase_34 AC 65 ms
159,792 KB
testcase_35 AC 568 ms
160,540 KB
testcase_36 AC 283 ms
160,072 KB
testcase_37 AC 322 ms
160,048 KB
testcase_38 AC 319 ms
160,204 KB
testcase_39 AC 280 ms
160,196 KB
testcase_40 AC 356 ms
160,540 KB
testcase_41 AC 531 ms
160,552 KB
testcase_42 AC 308 ms
160,052 KB
testcase_43 AC 241 ms
160,060 KB
testcase_44 AC 425 ms
160,540 KB
testcase_45 AC 451 ms
160,540 KB
testcase_46 AC 542 ms
160,656 KB
testcase_47 AC 145 ms
159,908 KB
testcase_48 AC 542 ms
160,540 KB
testcase_49 AC 464 ms
160,532 KB
testcase_50 AC 119 ms
159,916 KB
testcase_51 AC 250 ms
160,140 KB
testcase_52 AC 595 ms
161,676 KB
testcase_53 AC 595 ms
161,552 KB
testcase_54 AC 587 ms
161,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <set>
#include <map>
#include <algorithm>
#include <numeric>
#include <queue>
using namespace std;

const int mod = 1000000007;
struct mint {
  typedef long long ll;
  ll x;
  mint(ll x=0):x((x%mod+mod)%mod){}
  mint operator-() const { return mint(-x);}
  mint& operator+=(const mint a) {
    if ((x += a.x) >= mod) x -= mod;
    return *this;
  }
  mint& operator-=(const mint a) {
    if ((x += mod-a.x) >= mod) x -= mod;
    return *this;
  }
  mint& operator*=(const mint a) { (x *= a.x) %= mod; return *this;}
  mint operator+(const mint a) const { return mint(*this) += a;}
  mint operator-(const mint a) const { return mint(*this) -= a;}
  mint operator*(const mint a) const { return mint(*this) *= a;}
  mint pow(ll t) const {
    if (!t) return 1;
    mint a = pow(t>>1);
    a *= a;
    if (t&1) a *= *this;
    return a;
  }

  // for prime mod
  mint inv() const { return pow(mod-2);}
  mint& operator/=(const mint a) { return *this *= a.inv();}
  mint operator/(const mint a) const { return mint(*this) /= a;}
};
istream& operator>>(istream& is, mint& a) { return is >> a.x;}
ostream& operator<<(ostream& os, const mint& a) { return os << a.x;}

mint dp[1000010][2][10] = {};
int main() {
  int n;
  cin >> n;
  string x;
  for (int i = 0; i < n; i++) x.push_back('9');
  dp[0][0][0] = 1;
  for (int i = 0; i < n; i++) {
    int d = x[i]-'0';
    for (int j = 0; j < 2; j++) {
      for (int k = 0; k < 10; k++) {
        for (int l = 0; l <= (j ? 9 : d); l++) {
          if (l >= k) dp[i+1][j || (l < d)][l] += dp[i][j][k];
        }
      }
    }
  }
  mint ans = 0;
  for (int j = 0; j < 2; j++)
    for (int k = 0; k < 10; k++)
      ans += dp[n][j][k];
  
  cout << ans << endl;
  
}
0