結果

問題 No.2092 Conjugation
ユーザー phsplsphspls
提出日時 2022-10-09 18:55:48
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 18 ms / 2,000 ms
コード長 557 bytes
コンパイル時間 12,773 ms
コンパイル使用メモリ 385,668 KB
実行使用メモリ 10,240 KB
最終ジャッジ日時 2024-06-23 17:40:19
合計ジャッジ時間 14,512 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 12 ms
8,320 KB
testcase_08 AC 16 ms
9,600 KB
testcase_09 AC 15 ms
9,088 KB
testcase_10 AC 15 ms
9,216 KB
testcase_11 AC 15 ms
9,088 KB
testcase_12 AC 14 ms
8,928 KB
testcase_13 AC 14 ms
8,640 KB
testcase_14 AC 13 ms
8,692 KB
testcase_15 AC 15 ms
8,960 KB
testcase_16 AC 18 ms
9,856 KB
testcase_17 AC 18 ms
10,240 KB
testcase_18 AC 17 ms
9,984 KB
testcase_19 AC 4 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let mut n = String::new();
    std::io::stdin().read_line(&mut n).ok();
    let n: usize = n.trim().parse().unwrap();
    let mut a = String::new();
    std::io::stdin().read_line(&mut a).ok();
    let a: Vec<usize> = a.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();

    let mut dp = vec![0isize; 100001];
    for i in 0..n {
        dp[0] += 1;
        dp[a[i]] -= 1;
    }
    for i in 0..100000 {
        dp[i+1] += dp[i];
    }
    println!("{}", (0..a[0]).map(|i| dp[i].to_string()).collect::<Vec<_>>().join(" "));
}
0