結果
問題 | No.1319 最強とんがりコーン |
ユーザー | akakimidori |
提出日時 | 2020-12-16 00:38:11 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,198 bytes |
コンパイル時間 | 13,932 ms |
コンパイル使用メモリ | 377,044 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-20 02:54:19 |
合計ジャッジ時間 | 21,361 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 108 ms
5,376 KB |
testcase_03 | AC | 61 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 177 ms
5,376 KB |
testcase_06 | AC | 129 ms
5,376 KB |
testcase_07 | AC | 74 ms
5,376 KB |
testcase_08 | AC | 126 ms
5,376 KB |
testcase_09 | AC | 184 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | AC | 85 ms
5,376 KB |
testcase_12 | AC | 140 ms
5,376 KB |
testcase_13 | AC | 88 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | AC | 95 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 49 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 117 ms
5,376 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | AC | 85 ms
5,376 KB |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | AC | 188 ms
5,376 KB |
testcase_47 | WA | - |
testcase_48 | AC | 88 ms
5,376 KB |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | AC | 10 ms
5,376 KB |
testcase_61 | AC | 11 ms
5,376 KB |
testcase_62 | AC | 11 ms
5,376 KB |
testcase_63 | AC | 11 ms
5,376 KB |
testcase_64 | AC | 129 ms
5,376 KB |
testcase_65 | AC | 128 ms
5,376 KB |
testcase_66 | AC | 11 ms
5,376 KB |
testcase_67 | WA | - |
testcase_68 | AC | 193 ms
5,376 KB |
testcase_69 | WA | - |
testcase_70 | WA | - |
ソースコード
// ---------- begin input macro ---------- // reference: https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8 macro_rules! input { (source = $s:expr, $($r:tt)*) => { let mut iter = $s.split_whitespace(); input_inner!{iter, $($r)*} }; ($($r:tt)*) => { let s = { use std::io::Read; let mut s = String::new(); std::io::stdin().read_to_string(&mut s).unwrap(); s }; let mut iter = s.split_whitespace(); input_inner!{iter, $($r)*} }; } macro_rules! input_inner { ($iter:expr) => {}; ($iter:expr, ) => {}; ($iter:expr, $var:ident : $t:tt $($r:tt)*) => { let $var = read_value!($iter, $t); input_inner!{$iter $($r)*} }; } macro_rules! read_value { ($iter:expr, ( $($t:tt),* )) => { ( $(read_value!($iter, $t)),* ) }; ($iter:expr, [ $t:tt ; $len:expr ]) => { (0..$len).map(|_| read_value!($iter, $t)).collect::<Vec<_>>() }; ($iter:expr, chars) => { read_value!($iter, String).chars().collect::<Vec<char>>() }; ($iter:expr, bytes) => { read_value!($iter, String).bytes().collect::<Vec<u8>>() }; ($iter:expr, usize1) => { read_value!($iter, usize) - 1 }; ($iter:expr, $t:ty) => { $iter.next().unwrap().parse::<$t>().expect("Parse error") }; } // ---------- end input macro ---------- fn calc(d: f64) -> f64 { let mut ans = 0f64; let n = 10000000; let f = 1f64 / n as f64; for i in (0..n).rev() { let r = (n - i) as f64 * f; if 2.0 * r < d { continue; } let p = (d / 2.0 / r).acos() * 2.0; // ans += r * r * (p - p.sin()); let mut v = 0f64; let mut de = -1.0 / (1..=13).fold(1f64, |s, a| s * a as f64); for i in 0..=5 { v = v * p * p + de; de = -de * (13 - 2 * i) as f64 * (13 - 2 * i - 1) as f64; } v *= p * p * p; ans += r * r * v; } ans * f } fn run() { input! { r: f64, h: f64, d: f64, } let ans = r * r * h * calc(d / r); println!("{:.7}", ans); } fn main() { run(); }