結果

問題 No.741 AscNumber(Easy)
ユーザー syunsukesyunsuke
提出日時 2019-09-11 16:18:07
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 676 bytes
コンパイル時間 475 ms
コンパイル使用メモリ 55,232 KB
実行使用メモリ 89,344 KB
最終ジャッジ日時 2024-07-02 16:47:33
合計ジャッジ時間 9,187 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
89,216 KB
testcase_01 AC 78 ms
89,216 KB
testcase_02 AC 81 ms
89,216 KB
testcase_03 AC 79 ms
89,088 KB
testcase_04 AC 81 ms
89,216 KB
testcase_05 AC 79 ms
89,088 KB
testcase_06 AC 80 ms
89,344 KB
testcase_07 AC 79 ms
89,216 KB
testcase_08 AC 79 ms
89,216 KB
testcase_09 AC 79 ms
89,344 KB
testcase_10 AC 79 ms
89,216 KB
testcase_11 AC 79 ms
89,088 KB
testcase_12 AC 78 ms
89,216 KB
testcase_13 AC 80 ms
89,088 KB
testcase_14 AC 81 ms
89,216 KB
testcase_15 AC 80 ms
89,344 KB
testcase_16 AC 79 ms
89,344 KB
testcase_17 AC 80 ms
89,344 KB
testcase_18 AC 80 ms
89,216 KB
testcase_19 AC 80 ms
89,216 KB
testcase_20 AC 79 ms
89,216 KB
testcase_21 AC 79 ms
89,216 KB
testcase_22 AC 80 ms
89,088 KB
testcase_23 AC 80 ms
89,216 KB
testcase_24 AC 80 ms
89,216 KB
testcase_25 AC 80 ms
89,216 KB
testcase_26 AC 80 ms
89,216 KB
testcase_27 AC 81 ms
89,088 KB
testcase_28 AC 80 ms
89,216 KB
testcase_29 AC 81 ms
89,216 KB
testcase_30 AC 80 ms
89,344 KB
testcase_31 AC 79 ms
89,216 KB
testcase_32 AC 80 ms
89,344 KB
testcase_33 AC 80 ms
89,344 KB
testcase_34 AC 79 ms
89,216 KB
testcase_35 AC 270 ms
89,344 KB
testcase_36 AC 160 ms
89,088 KB
testcase_37 AC 177 ms
89,344 KB
testcase_38 AC 174 ms
89,344 KB
testcase_39 AC 159 ms
89,344 KB
testcase_40 AC 189 ms
89,344 KB
testcase_41 AC 252 ms
89,344 KB
testcase_42 AC 168 ms
89,216 KB
testcase_43 AC 144 ms
89,344 KB
testcase_44 AC 218 ms
89,216 KB
testcase_45 AC 230 ms
89,216 KB
testcase_46 AC 257 ms
89,216 KB
testcase_47 AC 111 ms
89,344 KB
testcase_48 AC 260 ms
89,216 KB
testcase_49 AC 230 ms
89,216 KB
testcase_50 AC 99 ms
89,216 KB
testcase_51 AC 150 ms
89,344 KB
testcase_52 AC 283 ms
89,216 KB
testcase_53 AC 274 ms
89,216 KB
testcase_54 AC 274 ms
89,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main(void){
    // Your code here!
    int N;
    cin>>N;
    long long dp[1000005][11],mod=1000000007,ans=0;
    for(int i=0;i<=1000004;i++){
        for(int j=0;j<=9;j++){
            dp[i][j]=0;
        }
    }
    for(int i=0;i<=9;i++){
        dp[0][i]=1;
    }
    for(int i=1;i<=N;i++){
        for(int j=0;j<=9;j++){
            for(int k=0;k<=9;k++){
                if(j>=k){
                    dp[i][j]+=dp[i-1][k];
                    dp[i][j]%=mod;
                }
            }
        }
    }
    ans=0;
    for(int i=0;i<=9;i++){
        ans+=dp[N-1][i];
    }
    ans%=mod;
    cout<<ans<<endl;
    return 0;
}
0