結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 694 ms
5,248 KB
testcase_01 AC 717 ms
5,376 KB
testcase_02 AC 880 ms
5,376 KB
testcase_03 AC 926 ms
5,376 KB
testcase_04 AC 828 ms
5,376 KB
testcase_05 AC 943 ms
5,376 KB
testcase_06 AC 884 ms
5,376 KB
testcase_07 AC 925 ms
5,376 KB
testcase_08 AC 885 ms
5,376 KB
testcase_09 AC 1,027 ms
5,376 KB
testcase_10 AC 1,131 ms
5,376 KB
testcase_11 AC 930 ms
5,376 KB
testcase_12 AC 872 ms
5,376 KB
testcase_13 AC 928 ms
5,376 KB
testcase_14 AC 1,031 ms
5,376 KB
testcase_15 AC 920 ms
5,376 KB
testcase_16 AC 1,020 ms
5,376 KB
testcase_17 AC 1,092 ms
5,376 KB
testcase_18 AC 970 ms
5,376 KB
testcase_19 AC 1,055 ms
5,376 KB
testcase_20 AC 721 ms
5,376 KB
testcase_21 AC 736 ms
5,376 KB
testcase_22 AC 700 ms
5,376 KB
testcase_23 AC 713 ms
5,376 KB
testcase_24 AC 692 ms
5,376 KB
testcase_25 AC 738 ms
5,376 KB
testcase_26 AC 714 ms
5,376 KB
testcase_27 AC 696 ms
5,376 KB
testcase_28 AC 713 ms
5,376 KB
testcase_29 AC 725 ms
5,376 KB
testcase_30 AC 751 ms
5,376 KB
testcase_31 AC 740 ms
5,376 KB
testcase_32 AC 924 ms
5,376 KB
testcase_33 AC 1,012 ms
5,376 KB
testcase_34 AC 724 ms
5,376 KB
testcase_35 AC 730 ms
5,376 KB
testcase_36 AC 714 ms
5,376 KB
testcase_37 AC 729 ms
5,376 KB
testcase_38 AC 715 ms
5,376 KB
testcase_39 AC 840 ms
5,376 KB
testcase_40 AC 938 ms
5,376 KB
testcase_41 AC 1,209 ms
5,376 KB
testcase_42 AC 1,048 ms
5,376 KB
testcase_43 AC 1,201 ms
5,376 KB
testcase_44 AC 1,029 ms
5,376 KB
testcase_45 AC 1,201 ms
5,376 KB
testcase_46 AC 961 ms
5,376 KB
testcase_47 AC 1,108 ms
5,376 KB
testcase_48 AC 939 ms
5,376 KB
testcase_49 AC 1,104 ms
5,376 KB
testcase_50 AC 1,126 ms
5,376 KB
testcase_51 AC 1,209 ms
5,376 KB
testcase_52 AC 1,159 ms
5,376 KB
testcase_53 AC 1,175 ms
5,376 KB
testcase_54 AC 991 ms
5,376 KB
testcase_55 AC 1,037 ms
5,376 KB
testcase_56 AC 1,171 ms
5,376 KB
testcase_57 AC 1,165 ms
5,376 KB
testcase_58 AC 1,181 ms
5,376 KB
testcase_59 AC 1,191 ms
5,376 KB
testcase_60 AC 369 ms
5,376 KB
testcase_61 AC 358 ms
5,376 KB
testcase_62 AC 363 ms
5,376 KB
testcase_63 AC 362 ms
5,376 KB
testcase_64 AC 903 ms
5,376 KB
testcase_65 AC 901 ms
5,376 KB
testcase_66 AC 383 ms
5,376 KB
testcase_67 AC 689 ms
5,376 KB
testcase_68 AC 1,045 ms
5,376 KB
testcase_69 AC 670 ms
5,376 KB
testcase_70 AC 1,092 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 = 3e7;
    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