結果
問題 | No.3080 A0xxxxx |
ユーザー | Hideyuki Tanaka |
提出日時 | 2021-04-01 22:58:12 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,564 bytes |
コンパイル時間 | 14,891 ms |
コンパイル使用メモリ | 377,532 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-01 04:23:47 |
合計ジャッジ時間 | 13,466 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
ソースコード
struct Scanner { bytes: std::io::Bytes<std::io::BufReader<std::io::Stdin>>, } impl Scanner { fn new() -> Self { Self { bytes: std::io::Read::bytes(std::io::BufReader::new(std::io::stdin())), } } fn next(&mut self) -> String { self.bytes .by_ref() .map(|r| r.unwrap() as char) .skip_while(|c| c.is_whitespace()) .take_while(|c| !c.is_whitespace()) .collect() } } macro_rules! input { ($sc:expr, $($r:tt)*) => { input_inner!{$sc, $($r)*} }; } macro_rules! input_inner { ($sc:expr) => {}; ($sc:expr, ) => {}; ($sc:expr, $var:ident : $t:tt $($r:tt)*) => { let $var = read_value!($sc, $t); input_inner!{$sc $($r)*} }; } macro_rules! read_value { ($sc:expr, ( $($t:tt),* )) => { ( $(read_value!($sc, $t)),* ) }; ($sc:expr, [ $t:tt ; $len:expr ]) => { (0..$len).map(|_| read_value!($sc, $t)).collect::<Vec<_>>() }; ($sc:expr, Chars) => { read_value!($sc, String).chars().collect::<Vec<char>>() }; ($sc:expr, Usize1) => { read_value!($sc, usize) - 1 }; ($sc:expr, $t:ty) => { $sc.next().parse::<$t>().expect("Parse error") }; } fn main() { let mut sc = Scanner::new(); let ans = solve(&mut sc); println!("{}", ans); } fn solve(sc: &mut Scanner) -> i64 { input! { sc, n: usize, } if n == 1 { 7 } else if n == 2 { 15 } else { panic!(); } }