結果

問題 No.2210 equence Squence Seuence
ユーザー Yukino DX.Yukino DX.
提出日時 2024-08-16 11:48:32
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 733 bytes
コンパイル時間 14,217 ms
コンパイル使用メモリ 402,536 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-16 11:48:49
合計ジャッジ時間 15,988 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 1 ms
6,812 KB
testcase_03 AC 6 ms
6,944 KB
testcase_04 WA -
testcase_05 AC 10 ms
6,944 KB
testcase_06 AC 8 ms
6,944 KB
testcase_07 AC 22 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 WA -
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 27 ms
6,940 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 26 ms
6,940 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 0 ms
6,940 KB
testcase_22 WA -
testcase_23 AC 19 ms
6,940 KB
testcase_24 AC 15 ms
6,940 KB
testcase_25 AC 18 ms
6,940 KB
testcase_26 AC 22 ms
6,940 KB
testcase_27 AC 7 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use proconio::input;

fn main() {
    input! {
        n:usize,
        mut k:usize,
        a:[usize;n],
    }

    let mut b = vec![];
    for i in 0..n - 1 {
        if a[i] <= a[i + 1] {
            if n - i == k {
                for j in i + 1..n {
                    b.push(a[j]);
                }

                break;
            } else {
                b.push(a[i]);
            }
        } else {
            if 1 == k {
                for j in i + 1..n {
                    b.push(a[j]);
                }

                break;
            } else {
                b.push(a[i]);

                k -= 1;
            }
        }
    }

    for bi in b.iter() {
        print!("{} ", *bi);
    }
    println!();
}
0