結果
問題 | No.5 数字のブロック |
ユーザー | t__nabe |
提出日時 | 2020-04-10 17:33:25 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 863 bytes |
コンパイル時間 | 12,851 ms |
コンパイル使用メモリ | 378,492 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-15 06:17:03 |
合計ジャッジ時間 | 14,109 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
testcase_23 | AC | 1 ms
5,376 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 1 ms
5,376 KB |
testcase_27 | AC | 1 ms
5,376 KB |
testcase_28 | AC | 1 ms
5,376 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 1 ms
5,376 KB |
testcase_32 | AC | 1 ms
5,376 KB |
testcase_33 | AC | 1 ms
5,376 KB |
コンパイルメッセージ
warning: unused variable: `stdin` --> src/main.rs:28:15 | 28 | fn read_input(stdin: &mut Stdin) -> Input { | ^^^^^ help: if this is intentional, prefix it with an underscore: `_stdin` | = note: `#[warn(unused_variables)]` on by default warning: variable does not need to be mutable --> src/main.rs:31:9 | 31 | let mut w: Vec<u32> = read_vec(); | ----^ | | | help: remove this `mut` | = note: `#[warn(unused_mut)]` on by default warning: field `n` is never read --> src/main.rs:7:5 | 5 | struct Input { | ----- field in this struct 6 | l: u32, 7 | n: u32, | ^ | = note: `#[warn(dead_code)]` on by default
ソースコード
use std::io; use std::io::{Stdin, }; struct Input { l: u32, n: u32, w: Vec<u32>, } fn main() { let mut stdin = io::stdin(); let input = read_input(&mut stdin); let mut count = 0; let mut sum = 0; for e in input.w { sum += e; if input.l < sum { break; } count += 1; } println!("{}", count); } fn read_input(stdin: &mut Stdin) -> Input { let l: u32 = read_single(); let n: u32 = read_single(); let mut w: Vec<u32> = read_vec(); Input { l, n, w } } fn read_single<T: std::str::FromStr>() -> T { let mut s = String::new(); std::io::stdin().read_line(&mut s).ok(); s.trim().parse().ok().unwrap() } fn read_vec<T: std::str::FromStr>() -> Vec<T> { read_single::<String>().split_whitespace() .map(|e| e.parse().ok().unwrap()).collect() }