提出 #38947439


ソースコード 拡げる

use proconio::input;

fn main() {
    input! {
        _k: usize,
        t: usize,
        mut a: [usize; t],
    };
    a.sort();
    let mut l = 0_usize;
    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 = a[l].saturating_sub(1);
    println!("{}", ans);
}

提出情報

提出日時
問題 B - K個のケーキ
ユーザ bouzuya
言語 Rust (1.42.0)
得点 200
コード長 413 Byte
結果 AC
実行時間 6 ms
メモリ 2128 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 6 ms 2036 KiB
0_001.txt AC 1 ms 1944 KiB
0_002.txt AC 2 ms 2036 KiB
1_003.txt AC 1 ms 2128 KiB
1_004.txt AC 2 ms 2104 KiB
1_005.txt AC 2 ms 2064 KiB
1_006.txt AC 1 ms 2036 KiB
1_007.txt AC 2 ms 2096 KiB
1_008.txt AC 1 ms 2036 KiB
1_009.txt AC 1 ms 2044 KiB