結果

問題 No.1407 Kindness
ユーザー phsplsphspls
提出日時 2023-01-22 21:47:22
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 1,402 bytes
コンパイル時間 12,942 ms
コンパイル使用メモリ 401,704 KB
実行使用メモリ 57,472 KB
最終ジャッジ日時 2024-06-25 00:10:47
合計ジャッジ時間 18,223 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 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 264 ms
51,712 KB
testcase_13 AC 59 ms
12,928 KB
testcase_14 AC 80 ms
16,256 KB
testcase_15 AC 238 ms
47,104 KB
testcase_16 AC 156 ms
29,696 KB
testcase_17 AC 106 ms
20,736 KB
testcase_18 AC 100 ms
19,712 KB
testcase_19 AC 218 ms
42,496 KB
testcase_20 AC 191 ms
35,712 KB
testcase_21 AC 15 ms
5,376 KB
testcase_22 AC 21 ms
5,888 KB
testcase_23 AC 182 ms
33,920 KB
testcase_24 AC 300 ms
56,704 KB
testcase_25 AC 101 ms
19,712 KB
testcase_26 AC 144 ms
27,392 KB
testcase_27 AC 19 ms
5,376 KB
testcase_28 AC 243 ms
46,336 KB
testcase_29 AC 10 ms
5,376 KB
testcase_30 AC 264 ms
51,200 KB
testcase_31 AC 61 ms
13,056 KB
testcase_32 AC 251 ms
43,392 KB
testcase_33 AC 92 ms
16,768 KB
testcase_34 AC 196 ms
33,152 KB
testcase_35 AC 73 ms
14,208 KB
testcase_36 AC 9 ms
5,376 KB
testcase_37 AC 268 ms
57,472 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: variable `SIZE` should have a snake case name
 --> src/main.rs:9:9
  |
9 |     let SIZE = n.len();
  |         ^^^^ help: convert the identifier to snake case: `size`
  |
  = note: `#[warn(non_snake_case)]` on by default

ソースコード

diff #

const MOD: usize = 1e9 as usize + 7;

fn main() {
    let mut n = String::new();
    std::io::stdin().read_line(&mut n).ok();
    let n = n.trim().chars().map(|c| c as usize - '0' as usize).collect::<Vec<_>>();

    let SIZE = n.len();
    let mut edp = vec![vec![vec![0usize; 10]; 2]; SIZE];
    let mut ldp = vec![vec![vec![0usize; 10]; 2]; SIZE];
    edp[0][0][n[0]] = n[0];
    for i in 0..n[0] {
        ldp[0][if i == 0 { 1 } else { 0 }][i] = i.max(1);
    }
    for i in 1..SIZE {
        for leading0 in 0..2 {
            for j in 0..10 {
                for nj in 0..10 {
                    let nleading0 = if leading0 == 1 && nj == 0 { 1 } else { 0 };
                    let val = if nleading0 == 1 { 1 } else { nj };
                    if n[i] == nj {
                        edp[i][nleading0][nj] += edp[i-1][leading0][j] * val % MOD;
                        edp[i][nleading0][nj] %= MOD;
                    } else if nj < n[i] {
                        ldp[i][nleading0][nj] += edp[i-1][leading0][j] * val % MOD;
                    }
                    ldp[i][nleading0][nj] += ldp[i-1][leading0][j] * val % MOD;
                    ldp[i][nleading0][nj] %= MOD;
                }
            }
        }
    }
    println!("{}", (edp[SIZE-1].iter().map(|v| v.iter().sum::<usize>()).sum::<usize>() + ldp[SIZE-1].iter().map(|v| v.iter().sum::<usize>()).sum::<usize>() - 1) % MOD);
}
0