結果
問題 | No.741 AscNumber(Easy) |
ユーザー | みしあ |
提出日時 | 2023-04-05 17:29:44 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 506 ms / 2,000 ms |
コード長 | 2,461 bytes |
コンパイル時間 | 4,242 ms |
コンパイル使用メモリ | 263,204 KB |
実行使用メモリ | 222,080 KB |
最終ジャッジ日時 | 2024-10-02 02:18:42 |
合計ジャッジ時間 | 14,097 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
159,680 KB |
testcase_01 | AC | 43 ms
159,744 KB |
testcase_02 | AC | 42 ms
159,744 KB |
testcase_03 | AC | 43 ms
159,744 KB |
testcase_04 | AC | 43 ms
159,664 KB |
testcase_05 | AC | 42 ms
159,656 KB |
testcase_06 | AC | 41 ms
159,548 KB |
testcase_07 | AC | 43 ms
159,700 KB |
testcase_08 | AC | 43 ms
159,616 KB |
testcase_09 | AC | 44 ms
159,616 KB |
testcase_10 | AC | 43 ms
159,744 KB |
testcase_11 | AC | 43 ms
159,744 KB |
testcase_12 | AC | 42 ms
159,772 KB |
testcase_13 | AC | 42 ms
159,744 KB |
testcase_14 | AC | 42 ms
159,744 KB |
testcase_15 | AC | 43 ms
159,684 KB |
testcase_16 | AC | 44 ms
159,744 KB |
testcase_17 | AC | 43 ms
159,736 KB |
testcase_18 | AC | 43 ms
159,616 KB |
testcase_19 | AC | 43 ms
159,872 KB |
testcase_20 | AC | 44 ms
159,616 KB |
testcase_21 | AC | 43 ms
159,744 KB |
testcase_22 | AC | 42 ms
159,840 KB |
testcase_23 | AC | 44 ms
159,744 KB |
testcase_24 | AC | 43 ms
159,616 KB |
testcase_25 | AC | 42 ms
159,692 KB |
testcase_26 | AC | 43 ms
159,744 KB |
testcase_27 | AC | 43 ms
159,708 KB |
testcase_28 | AC | 42 ms
159,616 KB |
testcase_29 | AC | 43 ms
159,724 KB |
testcase_30 | AC | 43 ms
159,744 KB |
testcase_31 | AC | 43 ms
159,872 KB |
testcase_32 | AC | 41 ms
159,744 KB |
testcase_33 | AC | 42 ms
159,792 KB |
testcase_34 | AC | 43 ms
159,744 KB |
testcase_35 | AC | 485 ms
219,264 KB |
testcase_36 | AC | 232 ms
185,804 KB |
testcase_37 | AC | 290 ms
190,276 KB |
testcase_38 | AC | 265 ms
189,824 KB |
testcase_39 | AC | 239 ms
185,216 KB |
testcase_40 | AC | 301 ms
194,164 KB |
testcase_41 | AC | 446 ms
214,016 KB |
testcase_42 | AC | 255 ms
188,544 KB |
testcase_43 | AC | 196 ms
180,352 KB |
testcase_44 | AC | 359 ms
202,240 KB |
testcase_45 | AC | 386 ms
205,568 KB |
testcase_46 | AC | 460 ms
216,320 KB |
testcase_47 | AC | 113 ms
169,216 KB |
testcase_48 | AC | 462 ms
216,420 KB |
testcase_49 | AC | 391 ms
207,104 KB |
testcase_50 | AC | 90 ms
166,144 KB |
testcase_51 | AC | 204 ms
181,564 KB |
testcase_52 | AC | 506 ms
222,080 KB |
testcase_53 | AC | 501 ms
222,080 KB |
testcase_54 | AC | 494 ms
221,532 KB |
ソースコード
#pragma region Macros #include <bits/stdc++.h> #if defined(LOCAL) || defined(ONLINE_JUDGE) || defined(_DEBUG) #include <atcoder/all> #endif using namespace std; #define REP(i, n) for(int i=0, i##_len=(n); i<i##_len; ++i) #define REPR(i, n) for(int i=(n); i>=0; --i) #define FOR(i, n, m) for(int i=(m), i##_len=(n); i<i##_len; ++i) #define EACH(i, v) for(const auto& i : v) #define ALL(x) (x).begin(),(x).end() #define ALLR(x) (x).rbegin(),(x).rend() template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; } template<class T>using vec = vector<T>; template<class T, class U>using umap = unordered_map<T, U>; template<class T>using uset = unordered_set<T>; using ll = long long; using ld = long double; using P = pair<ll, ll>; //using T = tuple<ll, ll, ll>; using vl = vec<ll>; #define fi first #define se second #define el endl constexpr ll INF = numeric_limits<ll>::max()/2-1; #pragma endregion #pragma region IOMacros template<class T> istream &operator>>(istream &stream, vec<T>& o){REP(i, o.size())stream >> o[i];return stream;} template<class T> ostream &operator<<(ostream &stream, vec<T>& objs){REP(i, objs.size())stream << objs[i] << " ";stream << el;return stream;} #define I(T, ...) ;T __VA_ARGS__;__i(__VA_ARGS__); void __i() {} template<class T, class... Ts> void __i(T&& o, Ts&&... args){cin >> o;__i(forward<Ts>(args)...);} void O() {cerr << el;} template<class T, class... Ts> void O(T&& o, Ts&&... args){cerr << o << " ";O(forward<Ts>(args)...);} #pragma endregion void Main(); int main(){ std::cin.tie(nullptr); std::cout << std::fixed << std::setprecision(15); Main(); return 0; } const ll mod = 1e9 + 7; ll dp[1000000+10][2][10]; void init_dp(){memset(dp, -1ll, sizeof(dp));} ll KK; // sumの部分は、問題によってどうするか決める ll rec(int k = 0, bool tight = true, int mn = 0) { if (k == KK) { // sumがどうなっていたらOKなのか考える return 1; } int x = 9; int e = (tight ? x : 9); auto &res = dp[k][tight][mn]; if (~res) return res; res = 0; for (int i = mn; i <= e; ++i) { // sumの部分は問題によってどうするか決める res += rec(k + 1, tight && i == e, max(mn, i)); res %= mod; } return res; } void Main(){ cin >> KK; init_dp(); cout << rec() << el; }