結果

問題 No.1319 最強とんがりコーン
ユーザー chocoruskchocorusk
提出日時 2020-12-16 00:09:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 888 bytes
コンパイル時間 1,185 ms
コンパイル使用メモリ 126,824 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-20 02:38:44
合計ジャッジ時間 67,646 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,509 ms
5,248 KB
testcase_01 AC 1,557 ms
5,376 KB
testcase_02 AC 862 ms
5,376 KB
testcase_03 AC 468 ms
5,376 KB
testcase_04 AC 1,730 ms
5,376 KB
testcase_05 AC 1,490 ms
5,376 KB
testcase_06 AC 953 ms
5,376 KB
testcase_07 AC 554 ms
5,376 KB
testcase_08 AC 1,001 ms
5,376 KB
testcase_09 AC 1,669 ms
5,376 KB
testcase_10 AC 168 ms
5,376 KB
testcase_11 AC 644 ms
5,376 KB
testcase_12 AC 1,081 ms
5,376 KB
testcase_13 AC 689 ms
5,376 KB
testcase_14 AC 262 ms
5,376 KB
testcase_15 AC 742 ms
5,376 KB
testcase_16 AC 306 ms
5,376 KB
testcase_17 AC 1,961 ms
5,376 KB
testcase_18 AC 377 ms
5,376 KB
testcase_19 AC 1,952 ms
5,376 KB
testcase_20 AC 1,498 ms
5,376 KB
testcase_21 AC 1,554 ms
5,376 KB
testcase_22 AC 1,483 ms
5,376 KB
testcase_23 AC 1,501 ms
5,376 KB
testcase_24 AC 1,502 ms
5,376 KB
testcase_25 AC 1,614 ms
5,376 KB
testcase_26 AC 1,498 ms
5,376 KB
testcase_27 AC 1,484 ms
5,376 KB
testcase_28 AC 1,483 ms
5,376 KB
testcase_29 AC 1,478 ms
5,376 KB
testcase_30 AC 1,513 ms
5,376 KB
testcase_31 AC 1,508 ms
5,376 KB
testcase_32 AC 936 ms
5,376 KB
testcase_33 AC 1,941 ms
5,376 KB
testcase_34 AC 1,489 ms
5,376 KB
testcase_35 AC 1,533 ms
5,376 KB
testcase_36 AC 1,506 ms
5,376 KB
testcase_37 AC 1,529 ms
5,376 KB
testcase_38 AC 1,498 ms
5,376 KB
testcase_39 AC 1,701 ms
5,376 KB
testcase_40 AC 646 ms
5,376 KB
testcase_41 AC 156 ms
5,376 KB
testcase_42 AC 236 ms
5,376 KB
testcase_43 AC 167 ms
5,376 KB
testcase_44 AC 249 ms
5,376 KB
testcase_45 WA -
testcase_46 AC 1,386 ms
5,376 KB
testcase_47 AC 190 ms
5,376 KB
testcase_48 AC 637 ms
5,376 KB
testcase_49 AC 203 ms
5,376 KB
testcase_50 AC 179 ms
5,376 KB
testcase_51 AC 139 ms
5,376 KB
testcase_52 AC 168 ms
5,376 KB
testcase_53 WA -
testcase_54 AC 300 ms
5,376 KB
testcase_55 AC 247 ms
5,376 KB
testcase_56 AC 158 ms
5,376 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 AC 78 ms
5,376 KB
testcase_61 AC 77 ms
5,376 KB
testcase_62 AC 77 ms
5,376 KB
testcase_63 AC 77 ms
5,376 KB
testcase_64 AC 971 ms
5,376 KB
testcase_65 AC 966 ms
5,376 KB
testcase_66 AC 77 ms
5,376 KB
testcase_67 AC 1,469 ms
5,376 KB
testcase_68 AC 1,833 ms
5,376 KB
testcase_69 AC 1,466 ms
5,376 KB
testcase_70 AC 199 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#define popcount __builtin_popcount
using namespace std;
typedef long long ll;
typedef pair<int, int> P;

int main()
{
    double r, h, d;
    cin>>r>>h>>d;
    double ans=0;
    const int loop=50000000;
    double h1=h/loop;
    for(int i=0; i<loop; i++){
        double r1=r*(double)i/loop;
        if(d>=2*r1) continue;
        double t=acos(d/(2*r1))*2;
        ans+=h1*r1*r1*(t-sin(t));
    }
    printf("%.7lf\n", ans);
    return 0;
}
0