結果
問題 | No.8076 eLepHAnTpAoOM |
ユーザー | Hideyuki Tanaka |
提出日時 | 2021-04-01 22:20:49 |
言語 | Rust (1.83.0 + proconio) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 1,565 bytes |
コンパイル時間 | 12,218 ms |
コンパイル使用メモリ | 391,156 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-21 06:38:42 |
合計ジャッジ時間 | 13,322 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 23 |
ソースコード
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) -> f64 { input! { sc, h: f64, r: f64, } let ffc = 2.0 * std::f64::consts::PI * r; -8.245 + 6.807 * h + 7.073 * ffc }