結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー phsplsphspls
提出日時 2022-09-30 10:39:48
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 811 bytes
コンパイル時間 11,875 ms
コンパイル使用メモリ 403,660 KB
実行使用メモリ 14,060 KB
最終ジャッジ日時 2024-06-02 02:22:50
合計ジャッジ時間 20,182 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 0 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 33 ms
8,032 KB
testcase_17 AC 61 ms
13,216 KB
testcase_18 AC 46 ms
10,560 KB
testcase_19 AC 17 ms
6,944 KB
testcase_20 AC 19 ms
6,940 KB
testcase_21 AC 70 ms
14,004 KB
testcase_22 AC 66 ms
13,876 KB
testcase_23 AC 69 ms
13,880 KB
testcase_24 AC 69 ms
13,876 KB
testcase_25 AC 69 ms
13,876 KB
testcase_26 AC 70 ms
13,904 KB
testcase_27 AC 69 ms
14,056 KB
testcase_28 AC 67 ms
13,924 KB
testcase_29 AC 69 ms
14,060 KB
testcase_30 AC 65 ms
13,964 KB
testcase_31 AC 67 ms
14,008 KB
testcase_32 AC 50 ms
13,876 KB
testcase_33 AC 49 ms
13,952 KB
testcase_34 AC 56 ms
13,844 KB
testcase_35 AC 53 ms
13,940 KB
testcase_36 AC 1 ms
6,940 KB
testcase_37 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::cmp::Reverse;


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

    let mut orders = (0..n).collect::<Vec<_>>();
    orders.sort_by_key(|&i| Reverse(a[i] - b[i]));
    let mut result = vec!["B"; n];
    for &i in orders.iter().take(k) { result[i] = "A"; }
    println!("{}", result.join(""));
}
0