結果

問題 No.2623 Room Allocation
ユーザー Yukino DX.Yukino DX.
提出日時 2024-08-18 10:30:18
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 552 bytes
コンパイル時間 16,251 ms
コンパイル使用メモリ 402,220 KB
実行使用メモリ 17,024 KB
最終ジャッジ日時 2024-08-18 10:30:44
合計ジャッジ時間 19,381 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 14 ms
8,192 KB
testcase_07 AC 13 ms
7,424 KB
testcase_08 AC 14 ms
7,552 KB
testcase_09 AC 14 ms
7,424 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 12 ms
8,064 KB
testcase_12 AC 6 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 43 ms
17,024 KB
testcase_15 AC 19 ms
7,360 KB
testcase_16 AC 6 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 20 ms
7,424 KB
testcase_19 AC 19 ms
7,040 KB
testcase_20 AC 19 ms
7,296 KB
testcase_21 AC 20 ms
7,360 KB
testcase_22 AC 15 ms
6,016 KB
testcase_23 AC 9 ms
5,376 KB
testcase_24 AC 20 ms
7,296 KB
testcase_25 AC 15 ms
6,272 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 44 ms
14,196 KB
testcase_28 AC 18 ms
8,320 KB
testcase_29 AC 12 ms
6,528 KB
testcase_30 AC 42 ms
12,672 KB
testcase_31 AC 5 ms
5,376 KB
testcase_32 AC 8 ms
6,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use proconio::input;

fn main() {
    input! {
        n:usize,
        x:usize,
        y:usize,
        pc:[(i64,char);n],
    }

    let mut abs = vec![(0, 0); x + y];
    for i in 0..n {
        if pc[i].1 == 'A' {
            abs[i % (x + y)].0 += pc[i].0;
        } else {
            abs[i % (x + y)].1 += pc[i].0;
        }
    }

    abs.sort_by(|&x, &y| (y.0 - y.1).cmp(&(x.0 - x.1)));

    let mut ans = 0;
    for i in 0..x {
        ans += abs[i].0;
    }
    for i in 0..y {
        ans += abs[x + i].1;
    }

    println!("{}", ans);
}
0