結果

問題 No.1319 最強とんがりコーン
ユーザー KudeKude
提出日時 2020-12-16 13:49:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 849 ms / 2,000 ms
コード長 1,413 bytes
コンパイル時間 3,195 ms
コンパイル使用メモリ 217,692 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-20 05:02:12
合計ジャッジ時間 50,035 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 502 ms
5,248 KB
testcase_01 AC 525 ms
5,376 KB
testcase_02 AC 645 ms
5,376 KB
testcase_03 AC 677 ms
5,376 KB
testcase_04 AC 603 ms
5,376 KB
testcase_05 AC 695 ms
5,376 KB
testcase_06 AC 641 ms
5,376 KB
testcase_07 AC 669 ms
5,376 KB
testcase_08 AC 639 ms
5,376 KB
testcase_09 AC 726 ms
5,376 KB
testcase_10 AC 809 ms
5,376 KB
testcase_11 AC 658 ms
5,376 KB
testcase_12 AC 637 ms
5,376 KB
testcase_13 AC 660 ms
5,376 KB
testcase_14 AC 731 ms
5,376 KB
testcase_15 AC 649 ms
5,376 KB
testcase_16 AC 702 ms
5,376 KB
testcase_17 AC 755 ms
5,376 KB
testcase_18 AC 695 ms
5,376 KB
testcase_19 AC 734 ms
5,376 KB
testcase_20 AC 499 ms
5,376 KB
testcase_21 AC 528 ms
5,376 KB
testcase_22 AC 492 ms
5,376 KB
testcase_23 AC 498 ms
5,376 KB
testcase_24 AC 498 ms
5,376 KB
testcase_25 AC 515 ms
5,376 KB
testcase_26 AC 497 ms
5,376 KB
testcase_27 AC 488 ms
5,376 KB
testcase_28 AC 491 ms
5,376 KB
testcase_29 AC 489 ms
5,376 KB
testcase_30 AC 504 ms
5,376 KB
testcase_31 AC 503 ms
5,376 KB
testcase_32 AC 642 ms
5,376 KB
testcase_33 AC 708 ms
5,376 KB
testcase_34 AC 491 ms
5,376 KB
testcase_35 AC 515 ms
5,376 KB
testcase_36 AC 500 ms
5,376 KB
testcase_37 AC 510 ms
5,376 KB
testcase_38 AC 499 ms
5,376 KB
testcase_39 AC 590 ms
5,376 KB
testcase_40 AC 670 ms
5,376 KB
testcase_41 AC 831 ms
5,376 KB
testcase_42 AC 739 ms
5,376 KB
testcase_43 AC 807 ms
5,376 KB
testcase_44 AC 722 ms
5,376 KB
testcase_45 AC 844 ms
5,376 KB
testcase_46 AC 670 ms
5,376 KB
testcase_47 AC 773 ms
5,376 KB
testcase_48 AC 659 ms
5,376 KB
testcase_49 AC 763 ms
5,376 KB
testcase_50 AC 789 ms
5,376 KB
testcase_51 AC 849 ms
5,376 KB
testcase_52 AC 803 ms
5,376 KB
testcase_53 AC 827 ms
5,376 KB
testcase_54 AC 706 ms
5,376 KB
testcase_55 AC 732 ms
5,376 KB
testcase_56 AC 827 ms
5,376 KB
testcase_57 AC 832 ms
5,376 KB
testcase_58 AC 831 ms
5,376 KB
testcase_59 AC 821 ms
5,376 KB
testcase_60 AC 255 ms
5,376 KB
testcase_61 AC 256 ms
5,376 KB
testcase_62 AC 257 ms
5,376 KB
testcase_63 AC 256 ms
5,376 KB
testcase_64 AC 645 ms
5,376 KB
testcase_65 AC 641 ms
5,376 KB
testcase_66 AC 256 ms
5,376 KB
testcase_67 AC 493 ms
5,376 KB
testcase_68 AC 750 ms
5,376 KB
testcase_69 AC 488 ms
5,376 KB
testcase_70 AC 758 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#include<bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define rrep(i,n) for(int i = (n)-1; i >= 0; --i)
#define chmax(a, b) a = max(a, b)
#define chmin(a, b) a = min(a, b)
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << fixed << setprecision(12);
    double rmax, h, d;
    cin >> rmax >> h >> d;
    const double rmin = d / 2;
    constexpr int num = 2e7;
    const double rstep = (rmax - rmin) / num;
    double ans = 0;
    rep(i, num) {
    //for(double r = rmin; r < rmax; r += rstep) {
        const double r = rmin + rstep * i;
        double t = acos(d / 2 / r);
        ans += r * r * (2 * t - sin(2 * t));
        /*double x = 2 * t;
        double x2 = x * x;
        double z = 1;
        for(int i = 20; i >= 4; i -= 2) {
            z = 1 - x2 / (i * (i + 1)) * z;
        }
        z = r * r * x * x2 / 6 * z;
        //ans += r * r * (x2 * x / 6 * (1 - x2 / 20 * (1 - x2 / 42 * (1 - x2 / 72 * (1 - x2 / 110 * (1 - x2 / 156))))));
        ans += z;
        */
    }
    ans *= rstep * h / rmax;
    cout << ans << endl;
}
0