結果
問題 | No.741 AscNumber(Easy) |
ユーザー | pythontanuki |
提出日時 | 2022-12-20 13:50:13 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 432 ms / 2,000 ms |
コード長 | 3,724 bytes |
コンパイル時間 | 1,812 ms |
コンパイル使用メモリ | 209,308 KB |
実行使用メモリ | 305,204 KB |
最終ジャッジ日時 | 2024-11-18 01:49:31 |
合計ジャッジ時間 | 22,625 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 319 ms
304,256 KB |
testcase_01 | AC | 312 ms
304,088 KB |
testcase_02 | AC | 312 ms
304,128 KB |
testcase_03 | AC | 331 ms
304,128 KB |
testcase_04 | AC | 311 ms
304,256 KB |
testcase_05 | AC | 313 ms
304,256 KB |
testcase_06 | AC | 315 ms
304,212 KB |
testcase_07 | AC | 311 ms
304,120 KB |
testcase_08 | AC | 315 ms
303,952 KB |
testcase_09 | AC | 310 ms
304,128 KB |
testcase_10 | AC | 314 ms
304,220 KB |
testcase_11 | AC | 312 ms
304,140 KB |
testcase_12 | AC | 314 ms
304,256 KB |
testcase_13 | AC | 315 ms
304,256 KB |
testcase_14 | AC | 322 ms
304,092 KB |
testcase_15 | AC | 318 ms
304,244 KB |
testcase_16 | AC | 320 ms
304,112 KB |
testcase_17 | AC | 319 ms
304,212 KB |
testcase_18 | AC | 319 ms
304,096 KB |
testcase_19 | AC | 319 ms
304,212 KB |
testcase_20 | AC | 315 ms
304,256 KB |
testcase_21 | AC | 381 ms
304,256 KB |
testcase_22 | AC | 320 ms
304,172 KB |
testcase_23 | AC | 320 ms
304,128 KB |
testcase_24 | AC | 315 ms
304,256 KB |
testcase_25 | AC | 316 ms
304,128 KB |
testcase_26 | AC | 321 ms
304,256 KB |
testcase_27 | AC | 319 ms
304,128 KB |
testcase_28 | AC | 316 ms
304,256 KB |
testcase_29 | AC | 317 ms
304,128 KB |
testcase_30 | AC | 322 ms
304,256 KB |
testcase_31 | AC | 322 ms
304,256 KB |
testcase_32 | AC | 317 ms
304,256 KB |
testcase_33 | AC | 320 ms
304,128 KB |
testcase_34 | AC | 319 ms
304,128 KB |
testcase_35 | AC | 425 ms
305,068 KB |
testcase_36 | AC | 365 ms
304,580 KB |
testcase_37 | AC | 375 ms
304,700 KB |
testcase_38 | AC | 375 ms
304,704 KB |
testcase_39 | AC | 364 ms
304,576 KB |
testcase_40 | AC | 381 ms
304,688 KB |
testcase_41 | AC | 416 ms
304,944 KB |
testcase_42 | AC | 375 ms
304,580 KB |
testcase_43 | AC | 358 ms
304,576 KB |
testcase_44 | AC | 396 ms
304,944 KB |
testcase_45 | AC | 404 ms
304,812 KB |
testcase_46 | AC | 423 ms
305,068 KB |
testcase_47 | AC | 339 ms
304,256 KB |
testcase_48 | AC | 418 ms
305,204 KB |
testcase_49 | AC | 404 ms
304,820 KB |
testcase_50 | AC | 403 ms
304,256 KB |
testcase_51 | AC | 359 ms
304,576 KB |
testcase_52 | AC | 432 ms
305,168 KB |
testcase_53 | AC | 432 ms
305,168 KB |
testcase_54 | AC | 432 ms
305,164 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using C = complex<double>; const long long mod = 1000000007ll; const long long LINF = 1001002003004005006; const int INF = 1001001001; const double PI = acos(-1); const double EPS = 1e-10; const int di[4] = {-1,0,1,0}; const int dj[4] = {0,-1,0,1}; const int dx[8] = {1,1,1,0,0,-1,-1,-1}; const int dy[8] = {1,0,-1,1,-1,1,0,-1}; # define sz(x) (int)(x).size() # define rsz(x,n) x.resize(n) # define yosupo(x) {cout << (x) << endl; return 0;} # define ll long long # define fi first # define se second # define pb push_back # define pf push_front # define eb emplace_back # define ef emplace_front # define pob pop_back # define pof pop_front # define GET_MACRO(_1, _2, _3, NAME, ...) NAME # define _rep(i, n) _rep2(i, 0, n) # define _rep2(i, a, b) for(int i = (int)(a); i < (int)(b); i++) # define rep(...) GET_MACRO(__VA_ARGS__, _rep2, _rep)(__VA_ARGS__) # define srep(i, a, b) for(int i = a; i <= b; ++i) # define all(obj) (obj).begin(), (obj).end() # define rall(obj) (obj).rbegin(), (obj).rend() inline void YesNo(bool f) { std::cout << (f? "Yes": "No") << std::endl; } void read() {} template <typename T, class... U> void read(T &t, U &...u) { cin >> t; read(u...); } void writeln() { cout << endl; } template <typename T, class... U, char sep = ' '> void writeln(const T &t, const U &...u) { cout << t; if (sizeof...(u)) cout << sep; writeln(u...); } # define Pll pair<ll, ll> # define P pair<int,int> # define bit(x,i) (((x) >> (i)) & 1) # define equals(a, b) (fabs((a) - (b)) < EPS) // 誤差を考慮した同値判定 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<typename T>istream& operator>>(istream&i,vector<T>&v){rep(j,v.size())i>>v[j];return i;} template<typename T>string join(vector<T>&v){stringstream s;rep(i,v.size())s<<' '<<v[i];return s.str().substr(1);} template<typename T>ostream& operator<<(ostream&o,vector<T>&v){if(v.size())o<<join(v);return o;} template<typename T>ostream& operator<<(ostream&o,vector<vector<T>>&vv){if(vv.size())o<<join(vv);return o;} template <class T, class U> ostream& operator<<(ostream& os, const pair<T, U>& p) { return os << "P(" << p.first << " " << p.second << ")";} template<typename T> using vc = vector<T>; template<typename T> using vv = vc<vc<T>>; using vi = vc<int>; using vvi = vv<int>; using vl = vc<ll>; using vvl = vv<ll>; string s; void solve() { int N; read(N); s += '1'; rep(i,N) s += '0'; int n = sz(s); vv<vc<ll>> dp(1100000,vv<ll>(2,vc<ll>(10,0))); dp[0][0][0] = 1; rep(i,n) { int nd = s[i]-'0'; rep(j,2) { if(j == 0) { rep(k,10) {//今の桁 rep(nk,k,nd+1) {//次の桁 if(nk == nd) { dp[i+1][0][nk] += dp[i][0][k]; dp[i+1][0][nk] %= mod; } else { dp[i+1][1][nk] += dp[i][0][k]; dp[i+1][1][nk] %= mod; } } } } else {//j == 1 rep(k,10) { rep(nk,k,10) { dp[i+1][1][nk] += dp[i][1][k]; dp[i+1][1][nk] %= mod; } } } } } ll ans = 0; rep(j,2) rep(k,10) { ans += dp[n][j][k]; } ans %= mod; printf("%lld\n", ans); } int main() { int tt = 1; //read(tt); while(tt--) { solve(); } }