結果

問題 No.741 AscNumber(Easy)
ユーザー nebukuro09nebukuro09
提出日時 2018-10-05 21:29:11
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 372 ms / 2,000 ms
コード長 584 bytes
コンパイル時間 884 ms
コンパイル使用メモリ 112,384 KB
実行使用メモリ 116,480 KB
最終ジャッジ日時 2024-06-13 01:50:20
合計ジャッジ時間 7,230 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 1 ms
5,376 KB
testcase_35 AC 330 ms
111,232 KB
testcase_36 AC 151 ms
49,536 KB
testcase_37 AC 163 ms
57,856 KB
testcase_38 AC 164 ms
57,088 KB
testcase_39 AC 141 ms
48,640 KB
testcase_40 AC 197 ms
65,408 KB
testcase_41 AC 305 ms
101,376 KB
testcase_42 AC 156 ms
54,656 KB
testcase_43 AC 118 ms
39,936 KB
testcase_44 AC 238 ms
79,744 KB
testcase_45 AC 256 ms
86,144 KB
testcase_46 AC 317 ms
105,472 KB
testcase_47 AC 55 ms
19,584 KB
testcase_48 AC 326 ms
105,472 KB
testcase_49 AC 277 ms
88,704 KB
testcase_50 AC 38 ms
13,952 KB
testcase_51 AC 126 ms
42,112 KB
testcase_52 AC 350 ms
116,480 KB
testcase_53 AC 372 ms
116,480 KB
testcase_54 AC 348 ms
115,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, std.bitmanip;

immutable long MOD = 10^^9 + 7;

void main() {
    auto L = readln.chomp.to!int;
    auto dp = new long[][](L+1, 10);
    dp[0][0] = 1;

    foreach (i; 0..L) {
        foreach (j; 0..10) {
            foreach (k; j..10) {
                (dp[i+1][k] += dp[i][j]) %= MOD;
            }
        }
    }

    long ans = 0;
    foreach (i; 0..10) (ans += dp[L][i]) %= MOD;

    ans.writeln;
}
0