結果

問題 No.741 AscNumber(Easy)
ユーザー momoyuumomoyuu
提出日時 2023-04-01 20:37:12
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 1,933 bytes
コンパイル時間 2,974 ms
コンパイル使用メモリ 249,560 KB
実行使用メモリ 120,468 KB
最終ジャッジ日時 2024-09-24 11:15:02
合計ジャッジ時間 6,642 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 173 ms
114,932 KB
testcase_36 AC 78 ms
51,876 KB
testcase_37 AC 93 ms
60,672 KB
testcase_38 AC 89 ms
59,644 KB
testcase_39 AC 77 ms
50,936 KB
testcase_40 AC 103 ms
68,104 KB
testcase_41 AC 158 ms
105,128 KB
testcase_42 AC 85 ms
57,188 KB
testcase_43 AC 62 ms
42,172 KB
testcase_44 AC 125 ms
83,004 KB
testcase_45 AC 135 ms
89,304 KB
testcase_46 AC 165 ms
109,468 KB
testcase_47 AC 31 ms
21,248 KB
testcase_48 AC 167 ms
109,428 KB
testcase_49 AC 140 ms
92,076 KB
testcase_50 AC 21 ms
15,232 KB
testcase_51 AC 66 ms
44,248 KB
testcase_52 AC 185 ms
120,384 KB
testcase_53 AC 183 ms
120,468 KB
testcase_54 AC 181 ms
119,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;

//const ll mod = 998'244'353;
const ll mod = 1'000'000'007;
//const ll mod = 67'280'421'310'721;
struct mint{
    long long x;
    mint(long long 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{
        mint res(*this);
        return res+=a;
    }
    mint operator-(const mint& a) const{
        mint res(*this);
        return res-=a;
    }
    mint operator*(const mint& a) const{
        mint res(*this);
        return res*=a;
    }
    mint pow(long long n) const {
        assert(0 <= n);
        mint a = *this, r = 1;
        while (n) {
            if (n & 1) r *= a;
            a *= a;
            n >>= 1;
        }
        return r;
    }
    mint inv() const{
        return pow(mod-2);
    }
    mint& operator/=(const mint& a){
        return (*this)*=a.inv();
    }
    mint operator/(const mint& a) const {
        mint res(*this);
        return res/=a;
    }
    friend ostream& operator<<(ostream& os, const mint& m){
        os << m.x;
        return os;
    }
    bool operator==(const mint& a) const {
        return x == a.x;
    }
    bool operator<(const mint& a) const{
        return x < a.x;
    }
};


int main(){
    int n;
    cin>>n;
    vector<vector<mint> >dp(n+1,vector<mint>(10,0));
    dp[0][0] = 1;
    for(int i = 0;i<n;i++){
        for(int j = 0;j<=9;j++){
            for(int k = j;k<=9;k++){
                dp[i+1][k] += dp[i][j];
            }
        }
    }
    mint ans = 0;
    for(int i = 0;i<=9;i++) ans += dp[n][i];
    cout<<ans<<endl;
}
0