結果

問題 No.930 数列圧縮
ユーザー phsplsphspls
提出日時 2023-01-21 02:55:16
言語 Rust
(1.77.0)
結果
AC  
実行時間 18 ms / 2,000 ms
コード長 626 bytes
コンパイル時間 1,549 ms
コンパイル使用メモリ 145,384 KB
実行使用メモリ 10,064 KB
最終ジャッジ日時 2023-09-05 18:50:53
合計ジャッジ時間 4,897 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 13 ms
7,584 KB
testcase_09 AC 15 ms
8,532 KB
testcase_10 AC 12 ms
7,168 KB
testcase_11 AC 13 ms
7,784 KB
testcase_12 AC 15 ms
8,488 KB
testcase_13 AC 3 ms
4,380 KB
testcase_14 AC 3 ms
4,376 KB
testcase_15 AC 17 ms
10,044 KB
testcase_16 AC 17 ms
9,988 KB
testcase_17 AC 18 ms
10,056 KB
testcase_18 AC 18 ms
9,984 KB
testcase_19 AC 17 ms
10,064 KB
testcase_20 AC 16 ms
9,968 KB
testcase_21 AC 17 ms
10,028 KB
testcase_22 AC 1 ms
4,376 KB
testcase_23 AC 17 ms
10,040 KB
testcase_24 AC 1 ms
4,380 KB
testcase_25 AC 1 ms
4,380 KB
testcase_26 AC 1 ms
4,376 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();

    if a[0] > a[n-1] {
        println!("No");
        return;
    }
    let mut result = (1..a[0]).collect::<Vec<_>>();
    for i in 1..n {
        if a[0] < a[i] {
            result.push(a[i]);
        }
    }
    println!("Yes");
    println!("{}", result.iter().map(|v| v.to_string()).collect::<Vec<_>>().join(" "));
}
0