結果
問題 | No.1337 Fair Otoshidama |
ユーザー | Strorkis |
提出日時 | 2021-01-15 21:56:49 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 1,425 bytes |
コンパイル時間 | 15,499 ms |
コンパイル使用メモリ | 378,124 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-04 23:39:40 |
合計ジャッジ時間 | 12,182 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 0 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 0 ms
5,376 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 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 0 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
testcase_23 | AC | 1 ms
5,376 KB |
ソースコード
use std::io::{Read, Write}; struct Scanner<R> { bytes: std::io::Bytes<R>, buf: Vec<u8> } impl<R: Read> Scanner<R> { fn new(r: R) -> Scanner<R> { Scanner { bytes: r.bytes(), buf: Vec::new() } } fn next(&mut self) -> &str { self.buf = { self.bytes.by_ref().map(|b| b.unwrap()) .skip_while(|b| b.is_ascii_whitespace()) .take_while(|b| !b.is_ascii_whitespace()) .collect::<Vec<_>>() }; unsafe { std::str::from_utf8_unchecked(&self.buf) } } } macro_rules! scan { ($sc:expr, [$t:tt; $n:expr]) => ( (0..$n).map(|_| scan!($sc, $t)).collect::<Vec<_>>() ); ($sc:expr, ($($t:tt),*)) => (($(scan!($sc, $t)),*)); ($sc:expr, Usize1) => (scan!($sc, usize) - 1); ($sc:expr, Bytes) => ($sc.next().bytes().collect::<Vec<_>>()); ($sc:expr, Chars) => ($sc.next().chars().collect::<Vec<_>>()); ($sc:expr, $t:ty) => ($sc.next().parse::<$t>().unwrap()); } fn run<R: Read, W: Write>(mut sc: Scanner<R>, mut wr: W) { let (x, y, z) = scan!(sc, (i64, i64, i64)); if (x + y + z) % 3 == 0 { writeln!(wr, "Yes").ok(); } else { writeln!(wr, "No").ok(); } } fn main() { let (stdin, stdout) = (std::io::stdin(), std::io::stdout()); let sc = Scanner::new(std::io::BufReader::new(stdin.lock())); let wr = std::io::BufWriter::new(stdout.lock()); run(sc, wr); }