結果

問題 No.741 AscNumber(Easy)
ユーザー fukafukatanifukafukatani
提出日時 2018-11-18 15:44:59
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 644 bytes
コンパイル時間 25,555 ms
コンパイル使用メモリ 402,052 KB
実行使用メモリ 72,224 KB
最終ジャッジ日時 2024-12-24 14:54:12
合計ジャッジ時間 29,503 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 1 ms
5,248 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 1 ms
5,248 KB
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 1 ms
5,248 KB
testcase_20 AC 1 ms
5,248 KB
testcase_21 AC 1 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 1 ms
5,248 KB
testcase_25 AC 1 ms
5,248 KB
testcase_26 AC 1 ms
5,248 KB
testcase_27 AC 1 ms
5,248 KB
testcase_28 AC 1 ms
5,248 KB
testcase_29 AC 1 ms
5,248 KB
testcase_30 AC 1 ms
5,248 KB
testcase_31 AC 1 ms
5,248 KB
testcase_32 AC 1 ms
5,248 KB
testcase_33 AC 1 ms
5,248 KB
testcase_34 AC 1 ms
5,248 KB
testcase_35 AC 127 ms
68,840 KB
testcase_36 AC 56 ms
31,052 KB
testcase_37 AC 68 ms
36,212 KB
testcase_38 AC 66 ms
35,712 KB
testcase_39 AC 59 ms
30,464 KB
testcase_40 AC 76 ms
40,704 KB
testcase_41 AC 117 ms
62,976 KB
testcase_42 AC 65 ms
34,176 KB
testcase_43 AC 48 ms
25,284 KB
testcase_44 AC 89 ms
49,656 KB
testcase_45 AC 100 ms
53,436 KB
testcase_46 AC 126 ms
65,580 KB
testcase_47 AC 23 ms
12,672 KB
testcase_48 AC 120 ms
65,592 KB
testcase_49 AC 100 ms
55,120 KB
testcase_50 AC 15 ms
9,088 KB
testcase_51 AC 47 ms
26,444 KB
testcase_52 AC 135 ms
72,056 KB
testcase_53 AC 134 ms
72,224 KB
testcase_54 AC 133 ms
71,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn read<T: std::str::FromStr>() -> T {
    let mut s = String::new();
    std::io::stdin().read_line(&mut s).ok();
    s.trim().parse().ok().unwrap()
}

fn main() {
    let n: usize = read();
    let mut dp = vec![vec![0; 10]; n];
    let big_int = 1000_000_000 + 7;

    for j in 0..10 {
        dp[0][j] = 1;
    }

    for i in 0..n - 1 {
        dp[i + 1][0] = dp[i][0];
        for j in 1..10 {
            dp[i + 1][j] = dp[i][j] + dp[i + 1][j - 1];
            dp[i + 1][j] %= big_int;
        }
    }
    let mut ans = 0;
    for j in 1..10 {
        ans += dp[n - 1][j];
        ans %= big_int;
    }

    println!("{:?}", ans + 1);
}
0