Submission #38947439
Source Code Expand
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);
}
Submission Info
| Submission Time | |
|---|---|
| Task | B - K Cakes |
| User | bouzuya |
| Language | Rust (1.42.0) |
| Score | 200 |
| Code Size | 413 Byte |
| Status | AC |
| Exec Time | 6 ms |
| Memory | 2128 KiB |
Judge Result
| Set Name | Sample | All | ||||
|---|---|---|---|---|---|---|
| Score / Max Score | 0 / 0 | 200 / 200 | ||||
| Status |
|
|
| Set Name | Test Cases |
|---|---|
| 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 |
| Case Name | Status | Exec Time | Memory |
|---|---|---|---|
| 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 |