結果

問題 No.741 AscNumber(Easy)
ユーザー weizenweizen
提出日時 2018-10-05 21:51:10
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 827 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 23,040 KB
実行使用メモリ 79,640 KB
最終ジャッジ日時 2024-10-12 13:03:46
合計ジャッジ時間 3,743 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
20,068 KB
testcase_01 AC 5 ms
19,940 KB
testcase_02 AC 5 ms
19,944 KB
testcase_03 AC 4 ms
19,936 KB
testcase_04 AC 5 ms
19,940 KB
testcase_05 AC 5 ms
19,936 KB
testcase_06 AC 4 ms
20,064 KB
testcase_07 AC 4 ms
19,940 KB
testcase_08 AC 4 ms
20,068 KB
testcase_09 AC 5 ms
19,940 KB
testcase_10 AC 4 ms
19,940 KB
testcase_11 AC 5 ms
19,936 KB
testcase_12 AC 4 ms
19,940 KB
testcase_13 AC 4 ms
20,064 KB
testcase_14 AC 4 ms
20,068 KB
testcase_15 AC 4 ms
19,940 KB
testcase_16 AC 5 ms
20,064 KB
testcase_17 AC 4 ms
20,068 KB
testcase_18 AC 4 ms
19,940 KB
testcase_19 AC 4 ms
19,944 KB
testcase_20 AC 4 ms
20,064 KB
testcase_21 AC 4 ms
20,064 KB
testcase_22 AC 4 ms
20,064 KB
testcase_23 AC 4 ms
20,068 KB
testcase_24 AC 4 ms
20,064 KB
testcase_25 AC 4 ms
20,068 KB
testcase_26 AC 4 ms
19,940 KB
testcase_27 AC 4 ms
19,944 KB
testcase_28 AC 4 ms
20,068 KB
testcase_29 AC 4 ms
20,072 KB
testcase_30 AC 4 ms
19,936 KB
testcase_31 AC 5 ms
19,944 KB
testcase_32 AC 4 ms
20,064 KB
testcase_33 AC 4 ms
20,068 KB
testcase_34 AC 4 ms
20,068 KB
testcase_35 AC 143 ms
79,240 KB
testcase_36 AC 66 ms
48,264 KB
testcase_37 AC 78 ms
50,364 KB
testcase_38 AC 77 ms
49,220 KB
testcase_39 AC 65 ms
47,692 KB
testcase_40 AC 88 ms
53,944 KB
testcase_41 AC 132 ms
76,080 KB
testcase_42 AC 72 ms
47,808 KB
testcase_43 AC 55 ms
45,008 KB
testcase_44 AC 107 ms
63,928 KB
testcase_45 AC 113 ms
68,540 KB
testcase_46 AC 136 ms
77,588 KB
testcase_47 AC 28 ms
33,040 KB
testcase_48 AC 137 ms
77,652 KB
testcase_49 AC 116 ms
69,608 KB
testcase_50 AC 21 ms
28,888 KB
testcase_51 AC 58 ms
47,960 KB
testcase_52 AC 150 ms
79,640 KB
testcase_53 AC 154 ms
79,596 KB
testcase_54 AC 151 ms
79,588 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:9:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |         scanf("%d",&N);
      |         ~~~~~^~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <string.h>

#define MOD 1000000007
typedef long long ll;
ll dp[10][1000001]; // dp[i][j]: j桁の数のうち、先頭がiであるような場合の数
int N;
int main(){
        scanf("%d",&N);
        for(int i = 0; i <= 9; i++) dp[i][1] = 1;
        for(int n = 2; n <= N; n++){
                for(int i = 0; i <= 9; i++){
                        dp[i][n] = 0;
                        for(int j = i; j <= 9; j++){
                                dp[i][n] += dp[j][n-1];
                                dp[i][n] %= MOD;
                        }
                        //printf("dp[i][n]=%lld\n",dp[i][n]);
                }
        }
        ll ans = 0;
        for(int j = 0; j <= 9; j++){
                ans += dp[j][N];
                ans %= MOD;
        }
        printf("%lld\n",ans);
}
0