結果
問題 | No.1422 Social Distance in Train |
ユーザー | Strorkis |
提出日時 | 2021-03-12 21:23:36 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 951 bytes |
コンパイル時間 | 12,835 ms |
コンパイル使用メモリ | 379,896 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-14 11:23:17 |
合計ジャッジ時間 | 13,724 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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,248 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | AC | 1 ms
5,248 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
ソースコード
fn run<'a, F: FnMut() -> &'a str, W: std::io::Write>(scan: &mut F, writer: &mut W) { macro_rules! scan { ([$t:tt; $n:expr]) => ((0..$n).map(|_| scan!($t)).collect::<Vec<_>>()); (($($t:tt),*)) => (($(scan!($t)),*)); (Usize1) => (scan!(usize) - 1); (Bytes) => (scan().as_bytes().to_vec()); ($t:ty) => (scan().parse::<$t>().unwrap()); } macro_rules! println { ($($arg:tt)*) => (writeln!(writer, $($arg)*).ok()); } let n = scan!(i32); println!("{}", if n & 1 == 0 { 2 } else { 1 }); } fn main() { let ref mut buf = Vec::new(); std::io::Read::read_to_end(&mut std::io::stdin(), buf).ok(); let mut scanner = unsafe { std::str::from_utf8_unchecked(buf).split_ascii_whitespace() }; let ref mut scan = || scanner.next().unwrap(); let stdout = std::io::stdout(); let ref mut writer = std::io::BufWriter::new(stdout.lock()); run(scan, writer); }