提出 #16804509


ソースコード 拡げる

use proconio::input;

fn main() {
    input! {
        _: usize,
        t: usize,
        mut a: [i64; t]
    };
    a.sort();
    let mut l = 0;
    let mut r = t - 1;
    while l < r {
        a[l] -= 1;
        a[r] -= 1;
        if a[l] == 0 {
            l += 1;
        }
        if a[r] == 0 {
            r -= 1;
        }
    }
    let ans = std::cmp::max(0, a[l] - 1);
    println!("{}", ans);
}

提出情報

提出日時
問題 B - K個のケーキ
ユーザ bouzuya
言語 Rust (1.42.0)
得点 200
コード長 407 Byte
結果 AC
実行時間 8 ms
メモリ 2148 KiB

ジャッジ結果

セット名 Sample All
得点 / 配点 0 / 0 200 / 200
結果
AC × 3
AC × 10
セット名 テストケース
Sample 0_000.txt, 0_001.txt, 0_002.txt
All 0_000.txt, 0_001.txt, 0_002.txt, 1_003.txt, 1_004.txt, 1_005.txt, 1_006.txt, 1_007.txt, 1_008.txt, 1_009.txt
ケース名 結果 実行時間 メモリ
0_000.txt AC 8 ms 2096 KiB
0_001.txt AC 1 ms 2108 KiB
0_002.txt AC 1 ms 2024 KiB
1_003.txt AC 2 ms 2028 KiB
1_004.txt AC 2 ms 2068 KiB
1_005.txt AC 3 ms 2092 KiB
1_006.txt AC 2 ms 2148 KiB
1_007.txt AC 2 ms 2020 KiB
1_008.txt AC 2 ms 2072 KiB
1_009.txt AC 1 ms 2028 KiB