結果
問題 | No.1319 最強とんがりコーン |
ユーザー | akakimidori |
提出日時 | 2020-12-16 01:36:00 |
言語 | Rust (1.77.0 + proconio) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,084 bytes |
コンパイル時間 | 11,847 ms |
コンパイル使用メモリ | 384,884 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-20 04:12:41 |
合計ジャッジ時間 | 87,401 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,718 ms
5,248 KB |
testcase_01 | AC | 1,759 ms
5,376 KB |
testcase_02 | AC | 1,043 ms
5,376 KB |
testcase_03 | AC | 541 ms
5,376 KB |
testcase_04 | AC | 1,946 ms
5,376 KB |
testcase_05 | AC | 1,730 ms
5,376 KB |
testcase_06 | AC | 1,134 ms
5,376 KB |
testcase_07 | AC | 675 ms
5,376 KB |
testcase_08 | AC | 1,158 ms
5,376 KB |
testcase_09 | AC | 1,926 ms
5,376 KB |
testcase_10 | AC | 184 ms
5,376 KB |
testcase_11 | AC | 757 ms
5,376 KB |
testcase_12 | AC | 1,279 ms
5,376 KB |
testcase_13 | AC | 826 ms
5,376 KB |
testcase_14 | AC | 298 ms
5,376 KB |
testcase_15 | AC | 870 ms
5,376 KB |
testcase_16 | AC | 348 ms
5,376 KB |
testcase_17 | TLE | - |
testcase_18 | AC | 436 ms
5,376 KB |
testcase_19 | TLE | - |
testcase_20 | AC | 1,701 ms
5,376 KB |
testcase_21 | AC | 1,784 ms
5,376 KB |
testcase_22 | AC | 1,689 ms
5,376 KB |
testcase_23 | AC | 1,736 ms
5,376 KB |
testcase_24 | AC | 1,688 ms
5,376 KB |
testcase_25 | AC | 1,738 ms
5,376 KB |
testcase_26 | AC | 1,714 ms
5,376 KB |
testcase_27 | AC | 1,706 ms
5,376 KB |
testcase_28 | AC | 1,689 ms
5,376 KB |
testcase_29 | AC | 1,666 ms
5,376 KB |
testcase_30 | AC | 1,728 ms
5,376 KB |
testcase_31 | AC | 1,727 ms
5,376 KB |
testcase_32 | AC | 1,108 ms
5,376 KB |
testcase_33 | TLE | - |
testcase_34 | AC | 1,747 ms
6,940 KB |
testcase_35 | AC | 1,725 ms
5,376 KB |
testcase_36 | AC | 1,688 ms
5,376 KB |
testcase_37 | AC | 1,727 ms
5,376 KB |
testcase_38 | AC | 1,691 ms
5,376 KB |
testcase_39 | AC | 1,902 ms
5,376 KB |
testcase_40 | AC | 747 ms
5,376 KB |
testcase_41 | AC | 161 ms
5,376 KB |
testcase_42 | AC | 264 ms
5,376 KB |
testcase_43 | AC | 181 ms
5,376 KB |
testcase_44 | AC | 280 ms
5,376 KB |
testcase_45 | AC | 129 ms
5,376 KB |
testcase_46 | AC | 1,604 ms
5,376 KB |
testcase_47 | AC | 205 ms
5,376 KB |
testcase_48 | AC | 738 ms
5,376 KB |
testcase_49 | AC | 220 ms
5,376 KB |
testcase_50 | AC | 194 ms
5,376 KB |
testcase_51 | AC | 147 ms
5,376 KB |
testcase_52 | AC | 184 ms
5,376 KB |
testcase_53 | WA | - |
testcase_54 | AC | 343 ms
5,376 KB |
testcase_55 | AC | 275 ms
5,376 KB |
testcase_56 | AC | 169 ms
5,376 KB |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | AC | 69 ms
5,376 KB |
testcase_61 | AC | 69 ms
5,376 KB |
testcase_62 | AC | 68 ms
5,376 KB |
testcase_63 | AC | 66 ms
5,376 KB |
testcase_64 | AC | 1,122 ms
5,376 KB |
testcase_65 | AC | 1,114 ms
5,376 KB |
testcase_66 | AC | 68 ms
5,376 KB |
testcase_67 | AC | 1,645 ms
5,376 KB |
testcase_68 | TLE | - |
testcase_69 | AC | 1,658 ms
5,376 KB |
testcase_70 | AC | 218 ms
5,376 KB |
ソースコード
// ---------- 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 n = 70000000; let f = 1f64 / n as f64; let func = |r: f64| -> f64 { let p = (d * 0.5 / r).acos() * 2.0; r * r * (p - p.sin()) }; let mut sum = 0f64; let mut c = 0f64; for i in (0..n).rev() { let r = (n - i) as f64 * f; if 2.0 * r < d { continue; } let v = func(r); let y = v - c; let t = sum + y; c = (t - sum) - y; sum = t; } sum * f } fn run() { input! { r: f64, h: f64, d: f64, } let ans = r * r * h * calc(d / r); println!("{:.7}", ans); } fn main() { run(); }