結果

問題 No.741 AscNumber(Easy)
ユーザー le_panda_noirle_panda_noir
提出日時 2020-06-14 11:53:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 405 ms / 2,000 ms
コード長 1,098 bytes
コンパイル時間 623 ms
コンパイル使用メモリ 68,712 KB
実行使用メモリ 169,388 KB
最終ジャッジ日時 2024-06-27 04:01:29
合計ジャッジ時間 7,348 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 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 1 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 3 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 2 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 395 ms
161,536 KB
testcase_36 AC 168 ms
72,448 KB
testcase_37 AC 194 ms
84,608 KB
testcase_38 AC 191 ms
83,456 KB
testcase_39 AC 165 ms
71,040 KB
testcase_40 AC 221 ms
95,360 KB
testcase_41 AC 342 ms
147,840 KB
testcase_42 AC 185 ms
79,744 KB
testcase_43 AC 134 ms
58,752 KB
testcase_44 AC 270 ms
116,480 KB
testcase_45 AC 287 ms
125,184 KB
testcase_46 AC 355 ms
154,112 KB
testcase_47 AC 67 ms
28,928 KB
testcase_48 AC 364 ms
153,984 KB
testcase_49 AC 299 ms
129,152 KB
testcase_50 AC 44 ms
20,480 KB
testcase_51 AC 140 ms
61,696 KB
testcase_52 AC 405 ms
169,388 KB
testcase_53 AC 403 ms
169,344 KB
testcase_54 AC 393 ms
167,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
#define rep(i,n) for(int i=0,_i=(n);i<_i;++i)

template<int MOD> struct MInt {
  long long val;
  constexpr MInt(long long val = 0) : val(val % MOD) { if (val < 0) val += MOD; }
  MInt operator+(const MInt& n) const { return MInt(val) += n; }
  MInt operator-(const MInt& n) const { return MInt(val) -= n; }
  MInt& operator+=(const MInt& n) { val = (val + n.val) % MOD; return *this; }
  MInt& operator-=(const MInt& n) { val = (MOD + val - n.val) % MOD; return *this; }
  friend ostream& operator<<(ostream& os, const MInt& n) { os<<n.val; return os; }
};
constexpr int MOD = 1e9+7;
using mint = MInt<MOD>;

constexpr int MAX_N = 1e6;
bool visited[MAX_N+1][10];
mint dp[MAX_N+1][10];

mint dfs(int n, int t) {
  // 10^n未満で、直前の桁の数がtであるときのAscNumberの個数
  if (n == 1)
    return 10-t;
  if (visited[n][t])
    return dp[n][t];
  mint ans = 0;
  rep(i, 10-t) {
    ans += dfs(n-1, t+i);
  }
  visited[n][t] = true;
  return dp[n][t] = ans;
}

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

  cout << dfs(N, 0) << endl;

  return 0;
}
0