結果
問題 | No.2451 Redistribute Integers |
ユーザー | Strorkis |
提出日時 | 2023-09-01 21:48:41 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,196 bytes |
コンパイル時間 | 11,636 ms |
コンパイル使用メモリ | 379,596 KB |
実行使用メモリ | 5,760 KB |
最終ジャッジ日時 | 2024-06-11 11:02:27 |
合計ジャッジ時間 | 13,051 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 36 ms
5,760 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 0 ms
5,376 KB |
testcase_08 | AC | 30 ms
5,760 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | AC | 35 ms
5,760 KB |
testcase_14 | AC | 35 ms
5,760 KB |
testcase_15 | AC | 17 ms
5,376 KB |
testcase_16 | AC | 17 ms
5,376 KB |
testcase_17 | WA | - |
testcase_18 | AC | 34 ms
5,760 KB |
testcase_19 | WA | - |
testcase_20 | AC | 29 ms
5,376 KB |
testcase_21 | WA | - |
ソースコード
pub mod input { use std::io::{BufRead, ErrorKind}; pub trait BytesRead { fn read_bytes(&mut self) -> Vec<u8>; } impl<R: BufRead> BytesRead for R { #[inline] fn read_bytes(&mut self) -> Vec<u8> { let mut res = Vec::new(); loop { let buf = match self.fill_buf() { Ok(buf) => buf, Err(e) if e.kind() == ErrorKind::Interrupted => continue, Err(e) => panic!("{}", e), }; let (done, used, buf) = match buf.iter().position(u8::is_ascii_whitespace) { Some(i) => (i > 0 || res.len() > 0, i + 1, &buf[..i]), None => (buf.is_empty(), buf.len(), buf), }; res.extend_from_slice(buf); self.consume(used); if done { return res; } } } } #[macro_export] macro_rules! read { ($r:expr, [$t:tt; $n:expr]) => ((0..$n).map(|_| read!($r, $t)).collect::<Vec<_>>()); ($r:expr, [$t:tt]) => (read!($r, [$t; read!($r, usize)])); ($r:expr, ($($t:tt),*)) => (($(read!($r, $t)),*)); ($r:expr, Bytes) => ($r.read_bytes()); ($r:expr, String) => (String::from_utf8(read!($r, Bytes)).unwrap()); ($r:expr, Usize1) => (read!($r, usize) - 1); ($r:expr, $t:ty) => (read!($r, String).parse::<$t>().unwrap()); } #[macro_export] macro_rules! input { ($r:expr, $($($v:ident)* : $t:tt),* $(,)?) => { $(let $($v)* = read!($r, $t);)* }; } } use input::BytesRead; fn run<R: std::io::BufRead, W: std::io::Write>(reader: &mut R, _writer: &mut W) { input! { reader, n: usize, a: [i64; n], } let sum = a.iter().sum::<i64>(); if sum % n as i64 == 0 { println!("Yes"); } else { println!("No"); } } fn main() { let (stdin, stdout) = (std::io::stdin(), std::io::stdout()); let mut reader = std::io::BufReader::new(stdin.lock()); let mut writer = std::io::BufWriter::new(stdout.lock()); run(&mut reader, &mut writer); }