結果

問題 No.1319 最強とんがりコーン
ユーザー chocoruskchocorusk
提出日時 2020-12-16 00:33:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 888 bytes
コンパイル時間 1,318 ms
コンパイル使用メモリ 127,356 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-20 02:52:07
合計ジャッジ時間 33,103 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 694 ms
5,248 KB
testcase_01 AC 717 ms
5,376 KB
testcase_02 AC 417 ms
5,376 KB
testcase_03 AC 221 ms
5,376 KB
testcase_04 AC 832 ms
5,376 KB
testcase_05 AC 706 ms
5,376 KB
testcase_06 AC 446 ms
5,376 KB
testcase_07 AC 255 ms
5,376 KB
testcase_08 AC 466 ms
5,376 KB
testcase_09 AC 774 ms
5,376 KB
testcase_10 WA -
testcase_11 AC 300 ms
5,376 KB
testcase_12 AC 497 ms
5,376 KB
testcase_13 AC 320 ms
5,376 KB
testcase_14 AC 122 ms
5,376 KB
testcase_15 AC 348 ms
5,376 KB
testcase_16 AC 144 ms
5,376 KB
testcase_17 AC 911 ms
5,376 KB
testcase_18 AC 173 ms
5,376 KB
testcase_19 AC 899 ms
5,376 KB
testcase_20 AC 688 ms
5,376 KB
testcase_21 AC 707 ms
5,376 KB
testcase_22 AC 681 ms
5,376 KB
testcase_23 AC 694 ms
5,376 KB
testcase_24 AC 705 ms
5,376 KB
testcase_25 AC 706 ms
5,376 KB
testcase_26 AC 686 ms
5,376 KB
testcase_27 AC 700 ms
5,376 KB
testcase_28 AC 683 ms
5,376 KB
testcase_29 AC 687 ms
5,376 KB
testcase_30 AC 707 ms
5,376 KB
testcase_31 AC 698 ms
5,376 KB
testcase_32 AC 437 ms
5,376 KB
testcase_33 AC 901 ms
5,376 KB
testcase_34 AC 693 ms
5,376 KB
testcase_35 AC 715 ms
5,376 KB
testcase_36 AC 697 ms
5,376 KB
testcase_37 AC 722 ms
5,376 KB
testcase_38 AC 703 ms
5,376 KB
testcase_39 AC 786 ms
5,376 KB
testcase_40 AC 300 ms
5,376 KB
testcase_41 WA -
testcase_42 AC 109 ms
5,376 KB
testcase_43 WA -
testcase_44 AC 117 ms
5,376 KB
testcase_45 WA -
testcase_46 AC 641 ms
5,376 KB
testcase_47 AC 93 ms
5,376 KB
testcase_48 AC 304 ms
5,376 KB
testcase_49 AC 98 ms
5,376 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 144 ms
5,376 KB
testcase_55 AC 116 ms
5,376 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 AC 36 ms
5,376 KB
testcase_61 AC 37 ms
5,376 KB
testcase_62 AC 37 ms
5,376 KB
testcase_63 AC 37 ms
5,376 KB
testcase_64 AC 453 ms
5,376 KB
testcase_65 AC 463 ms
5,376 KB
testcase_66 AC 37 ms
5,376 KB
testcase_67 AC 692 ms
5,376 KB
testcase_68 AC 848 ms
5,376 KB
testcase_69 AC 688 ms
5,376 KB
testcase_70 AC 93 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=25000000;
    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