結果
問題 | No.8077 🔧 |
ユーザー | Hideyuki Tanaka |
提出日時 | 2021-04-01 22:24:50 |
言語 | Rust (1.83.0 + proconio) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 1,520 bytes |
コンパイル時間 | 13,601 ms |
コンパイル使用メモリ | 384,924 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-21 06:40:13 |
合計ジャッジ時間 | 14,492 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 10 |
ソースコード
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, a: i64, b: i64, c: i64, d: i64, k: i64 } (a * b + c - d) % k }