結果
問題 | No.3029 素因数 |
ユーザー | tubo28 |
提出日時 | 2017-03-31 23:42:37 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,228 bytes |
コンパイル時間 | 15,072 ms |
コンパイル使用メモリ | 378,640 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-07 06:23:37 |
合計ジャッジ時間 | 16,366 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
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 | WA | - |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | WA | - |
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 | AC | 1 ms
5,376 KB |
testcase_26 | AC | 1 ms
5,376 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 1 ms
5,376 KB |
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 |
testcase_34 | AC | 1 ms
5,376 KB |
testcase_35 | AC | 1 ms
5,376 KB |
testcase_36 | AC | 1 ms
5,376 KB |
testcase_37 | AC | 1 ms
5,376 KB |
testcase_38 | WA | - |
testcase_39 | AC | 1 ms
5,376 KB |
ソースコード
fn main() { let mut sc = cin(); while sc.read() { let n: i32 = sc.next(); println!("{}", if n % 2 == 0 { "odd" } else { "even" }); } } #[allow(dead_code)] fn cin() -> Scanner<std::io::Stdin> { Scanner::new(std::io::stdin()) } #[allow(dead_code)] pub struct Scanner<T> { buf: Vec<u8>, len: usize, idx: usize, next: Option<String>, reader: T, } #[allow(dead_code)] impl<Reader: std::io::Read> Scanner<Reader> { fn new(r: Reader) -> Scanner<Reader> { Scanner { buf: vec![0; 8192], len: 0, idx: 0, next: None, reader: r, } } fn next<T: std::str::FromStr>(&mut self) -> T { self.wrapped::<T>().unwrap() } fn vec<T: std::str::FromStr>(&mut self, n: usize) -> Vec<T> { (0..n).map(|_| self.next()).collect() } fn mat<T: std::str::FromStr>(&mut self, r: usize, c: usize) -> Vec<Vec<T>> { (0..r).map(|_| self.vec(c)).collect() } fn vec_char(&mut self) -> Vec<char> { self.read(); self.next.take().unwrap().chars().collect() } fn mat_char(&mut self, r: usize) -> Vec<Vec<char>> { (0..r).map(|_| self.vec_char()).collect() } fn wrapped<T: std::str::FromStr>(&mut self) -> Option<T> { self.read(); self.next.take().and_then(|s| s.parse::<T>().ok()) } fn read(&mut self) -> bool { if self.next.is_some() { return true; } let mut s = String::with_capacity(16); while let Some(c) = self.get_char() { if !c.is_whitespace() { s.push(c); } else if !s.is_empty() { break; } } self.next = if !s.is_empty() { Some(s) } else { None }; self.next.is_some() } fn get_char(&mut self) -> Option<char> { if self.idx == self.len { match self.reader.read(&mut self.buf[..]) { Ok(l) if l > 0 => { self.idx = 0; self.len = l; } _ => return None, } } self.idx += 1; Some(self.buf[self.idx - 1] as char) } }