結果
| 問題 | No.5 数字のブロック |
| コンテスト | |
| ユーザー |
Maricom_tkg
|
| 提出日時 | 2018-10-23 12:09:15 |
| 言語 | Rust (1.94.0 + proconio + num + itertools) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 5,000 ms |
| コード長 | 579 bytes |
| 記録 | |
| コンパイル時間 | 988 ms |
| コンパイル使用メモリ | 189,764 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-05-13 00:30:18 |
| 合計ジャッジ時間 | 2,356 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 34 |
ソースコード
use std::io::Read;
fn main() {
let mut buf = String::new();
std::io::stdin().read_to_string(&mut buf).unwrap();
let mut iter = buf.split_whitespace();
let mut l: isize = iter.next().unwrap().parse().unwrap();
let n: usize = iter.next().unwrap().parse().unwrap();
let mut blocks: Vec<isize> = iter.map(|b| b.parse::<isize>().unwrap()).collect();
blocks.sort();
let mut idx: usize = 0;
while idx < n {
l -= blocks[idx];
if l < 0 { break }
idx += 1;
}
println!("{}", idx);
}
Maricom_tkg