結果

問題 No.1319 最強とんがりコーン
ユーザー akakimidoriakakimidori
提出日時 2020-12-17 04:21:02
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 1,045 bytes
コンパイル時間 12,840 ms
コンパイル使用メモリ 401,696 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-20 06:09:19
合計ジャッジ時間 26,593 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 278 ms
5,248 KB
testcase_01 AC 287 ms
5,376 KB
testcase_02 AC 188 ms
5,376 KB
testcase_03 AC 110 ms
5,376 KB
testcase_04 AC 304 ms
5,376 KB
testcase_05 AC 296 ms
5,376 KB
testcase_06 AC 215 ms
5,376 KB
testcase_07 AC 130 ms
5,376 KB
testcase_08 AC 226 ms
5,376 KB
testcase_09 AC 309 ms
5,376 KB
testcase_10 WA -
testcase_11 AC 148 ms
5,376 KB
testcase_12 AC 245 ms
5,376 KB
testcase_13 AC 164 ms
5,376 KB
testcase_14 AC 69 ms
5,376 KB
testcase_15 AC 177 ms
5,376 KB
testcase_16 AC 79 ms
5,376 KB
testcase_17 AC 344 ms
5,376 KB
testcase_18 AC 89 ms
5,376 KB
testcase_19 AC 330 ms
5,376 KB
testcase_20 AC 280 ms
5,376 KB
testcase_21 AC 289 ms
5,376 KB
testcase_22 AC 285 ms
5,376 KB
testcase_23 AC 279 ms
5,376 KB
testcase_24 AC 285 ms
5,376 KB
testcase_25 AC 288 ms
5,376 KB
testcase_26 AC 286 ms
5,376 KB
testcase_27 AC 280 ms
5,376 KB
testcase_28 AC 277 ms
5,376 KB
testcase_29 AC 292 ms
5,376 KB
testcase_30 AC 286 ms
5,376 KB
testcase_31 AC 276 ms
5,376 KB
testcase_32 AC 208 ms
5,376 KB
testcase_33 AC 311 ms
5,376 KB
testcase_34 AC 290 ms
5,376 KB
testcase_35 AC 285 ms
5,376 KB
testcase_36 AC 279 ms
5,376 KB
testcase_37 AC 278 ms
5,376 KB
testcase_38 AC 282 ms
5,376 KB
testcase_39 AC 295 ms
5,376 KB
testcase_40 AC 152 ms
5,376 KB
testcase_41 WA -
testcase_42 AC 61 ms
5,376 KB
testcase_43 WA -
testcase_44 AC 67 ms
5,376 KB
testcase_45 WA -
testcase_46 AC 294 ms
5,376 KB
testcase_47 WA -
testcase_48 AC 149 ms
5,376 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 73 ms
5,376 KB
testcase_55 AC 63 ms
5,376 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 AC 26 ms
5,376 KB
testcase_61 AC 26 ms
5,376 KB
testcase_62 AC 26 ms
5,376 KB
testcase_63 AC 25 ms
5,376 KB
testcase_64 AC 221 ms
5,376 KB
testcase_65 AC 210 ms
5,376 KB
testcase_66 AC 25 ms
5,376 KB
testcase_67 AC 283 ms
5,376 KB
testcase_68 AC 322 ms
5,376 KB
testcase_69 AC 270 ms
5,376 KB
testcase_70 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

fn calc(d: f64) -> f64 {
    let func = |r: f64| -> f64 {
        if 2.0 * r < d {
            return 0f64;
        }
        let p = (d / (2.0 * r)).acos() * 2.0;
        let pp = p * p;
        let mut v = 0f64;
        let m = 17;
        let mut de = -1.0 / (1..=m).fold(1f64, |s, a| s * a as f64);
        for i in 0..=7 {
            v = v * pp + de;
            de = -de * ((m - 2 * i) * (m - 2 * i - 1)) as f64;
        }
        v * r * r * pp * p
    };
    let n = 1 << 24;
    let f = 1f64 / n as f64;
    let mut sum = 0f64;
    for i in (0..n).rev() {
        let l = (n - 1 - i) as f64 * f;
        sum += func(l);
    }
    sum * f
}

fn run() {
    let mut s = String::new();
    std::io::stdin().read_line(&mut s).unwrap();
    let mut it = s.trim().split_whitespace();
    let r: f64 = it.next().unwrap().parse().unwrap();
    let h: f64 = it.next().unwrap().parse().unwrap();
    let d: f64 = it.next().unwrap().parse().unwrap();
    let ans = r * r * h * calc(d / r);
    println!("{:.7}", ans);
}

fn main() {
    run();
}
0