結果

問題 No.1319 最強とんがりコーン
ユーザー akakimidoriakakimidori
提出日時 2020-12-17 01:47:35
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 864 ms / 2,000 ms
コード長 891 bytes
コンパイル時間 12,832 ms
コンパイル使用メモリ 378,628 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-20 05:56:52
合計ジャッジ時間 42,041 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 628 ms
5,248 KB
testcase_01 AC 655 ms
5,376 KB
testcase_02 AC 383 ms
5,376 KB
testcase_03 AC 211 ms
5,376 KB
testcase_04 AC 743 ms
5,376 KB
testcase_05 AC 656 ms
5,376 KB
testcase_06 AC 422 ms
5,376 KB
testcase_07 AC 247 ms
5,376 KB
testcase_08 AC 442 ms
5,376 KB
testcase_09 AC 737 ms
5,376 KB
testcase_10 AC 78 ms
5,376 KB
testcase_11 AC 288 ms
5,376 KB
testcase_12 AC 479 ms
5,376 KB
testcase_13 AC 309 ms
5,376 KB
testcase_14 AC 120 ms
5,376 KB
testcase_15 AC 331 ms
5,376 KB
testcase_16 AC 139 ms
5,376 KB
testcase_17 AC 864 ms
5,376 KB
testcase_18 AC 167 ms
5,376 KB
testcase_19 AC 855 ms
5,376 KB
testcase_20 AC 628 ms
5,376 KB
testcase_21 AC 656 ms
5,376 KB
testcase_22 AC 616 ms
5,376 KB
testcase_23 AC 629 ms
5,376 KB
testcase_24 AC 625 ms
5,376 KB
testcase_25 AC 646 ms
5,376 KB
testcase_26 AC 628 ms
5,376 KB
testcase_27 AC 625 ms
5,376 KB
testcase_28 AC 617 ms
5,376 KB
testcase_29 AC 619 ms
5,376 KB
testcase_30 AC 635 ms
5,376 KB
testcase_31 AC 639 ms
5,376 KB
testcase_32 AC 414 ms
5,376 KB
testcase_33 AC 847 ms
5,376 KB
testcase_34 AC 619 ms
5,376 KB
testcase_35 AC 648 ms
5,376 KB
testcase_36 AC 628 ms
5,376 KB
testcase_37 AC 639 ms
5,376 KB
testcase_38 AC 626 ms
5,376 KB
testcase_39 AC 726 ms
5,376 KB
testcase_40 AC 288 ms
5,376 KB
testcase_41 AC 72 ms
5,376 KB
testcase_42 AC 107 ms
5,376 KB
testcase_43 AC 76 ms
5,376 KB
testcase_44 AC 114 ms
5,376 KB
testcase_45 AC 58 ms
5,376 KB
testcase_46 AC 612 ms
5,376 KB
testcase_47 AC 87 ms
5,376 KB
testcase_48 AC 287 ms
5,376 KB
testcase_49 AC 93 ms
5,376 KB
testcase_50 AC 83 ms
5,376 KB
testcase_51 AC 64 ms
5,376 KB
testcase_52 AC 78 ms
5,376 KB
testcase_53 AC 51 ms
5,376 KB
testcase_54 AC 136 ms
5,376 KB
testcase_55 AC 112 ms
5,376 KB
testcase_56 AC 73 ms
5,376 KB
testcase_57 AC 54 ms
5,376 KB
testcase_58 AC 51 ms
5,376 KB
testcase_59 AC 49 ms
5,376 KB
testcase_60 AC 37 ms
5,376 KB
testcase_61 AC 36 ms
5,376 KB
testcase_62 AC 36 ms
5,376 KB
testcase_63 AC 36 ms
5,376 KB
testcase_64 AC 429 ms
5,376 KB
testcase_65 AC 428 ms
5,376 KB
testcase_66 AC 36 ms
5,376 KB
testcase_67 AC 611 ms
5,376 KB
testcase_68 AC 810 ms
5,376 KB
testcase_69 AC 610 ms
5,376 KB
testcase_70 AC 94 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

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;
        r * r * (p - p.sin())
    };
    let n = 1 << 23;
    let f = 1f64 / n as f64;
    let inv6 = 1.0 / 6.0;
    let mut sum = 0f64;
    for i in (0..n).rev() {
        let r = (n - i) as f64 * f;
        let l = (n - 1 - i) as f64 * f;
        sum += (func(l) + 4.0 * func((l + r) * 0.5) + func(r)) * inv6;
    }
    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