結果

問題 No.1319 最強とんがりコーン
ユーザー butsurizukibutsurizuki
提出日時 2020-12-08 11:42:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,873 ms / 2,000 ms
コード長 641 bytes
コンパイル時間 1,976 ms
コンパイル使用メモリ 200,124 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-17 14:33:17
合計ジャッジ時間 71,777 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,203 ms
6,816 KB
testcase_01 AC 1,254 ms
6,940 KB
testcase_02 AC 1,193 ms
6,940 KB
testcase_03 AC 743 ms
6,944 KB
testcase_04 AC 1,381 ms
6,944 KB
testcase_05 AC 1,656 ms
6,944 KB
testcase_06 AC 1,277 ms
6,940 KB
testcase_07 AC 817 ms
6,940 KB
testcase_08 AC 1,311 ms
6,940 KB
testcase_09 AC 1,774 ms
6,944 KB
testcase_10 AC 423 ms
6,940 KB
testcase_11 AC 921 ms
6,940 KB
testcase_12 AC 1,383 ms
6,944 KB
testcase_13 AC 963 ms
6,944 KB
testcase_14 AC 489 ms
6,940 KB
testcase_15 AC 1,034 ms
6,940 KB
testcase_16 AC 547 ms
6,944 KB
testcase_17 AC 1,873 ms
6,944 KB
testcase_18 AC 614 ms
6,940 KB
testcase_19 AC 1,831 ms
6,944 KB
testcase_20 AC 1,217 ms
6,940 KB
testcase_21 AC 1,243 ms
6,940 KB
testcase_22 AC 1,187 ms
6,940 KB
testcase_23 AC 1,222 ms
6,940 KB
testcase_24 AC 1,213 ms
6,944 KB
testcase_25 AC 1,230 ms
6,940 KB
testcase_26 AC 1,364 ms
6,940 KB
testcase_27 AC 1,198 ms
6,944 KB
testcase_28 AC 1,196 ms
6,940 KB
testcase_29 AC 1,183 ms
6,944 KB
testcase_30 AC 1,225 ms
6,940 KB
testcase_31 AC 1,260 ms
6,940 KB
testcase_32 AC 1,255 ms
6,944 KB
testcase_33 AC 1,616 ms
6,940 KB
testcase_34 AC 1,202 ms
6,944 KB
testcase_35 AC 1,260 ms
6,944 KB
testcase_36 AC 1,217 ms
6,944 KB
testcase_37 AC 1,227 ms
6,944 KB
testcase_38 AC 1,234 ms
6,940 KB
testcase_39 AC 1,394 ms
6,940 KB
testcase_40 AC 938 ms
6,944 KB
testcase_41 AC 376 ms
6,940 KB
testcase_42 AC 463 ms
6,944 KB
testcase_43 AC 382 ms
6,944 KB
testcase_44 AC 479 ms
6,944 KB
testcase_45 AC 344 ms
6,940 KB
testcase_46 AC 1,665 ms
6,940 KB
testcase_47 AC 410 ms
6,944 KB
testcase_48 AC 923 ms
6,940 KB
testcase_49 AC 426 ms
6,940 KB
testcase_50 AC 400 ms
6,940 KB
testcase_51 AC 356 ms
6,944 KB
testcase_52 AC 388 ms
6,940 KB
testcase_53 AC 330 ms
6,944 KB
testcase_54 AC 543 ms
6,940 KB
testcase_55 AC 486 ms
6,944 KB
testcase_56 AC 424 ms
6,940 KB
testcase_57 AC 335 ms
6,940 KB
testcase_58 AC 330 ms
6,944 KB
testcase_59 AC 327 ms
6,944 KB
testcase_60 AC 298 ms
6,944 KB
testcase_61 AC 297 ms
6,940 KB
testcase_62 AC 299 ms
6,944 KB
testcase_63 AC 300 ms
6,940 KB
testcase_64 AC 1,301 ms
6,940 KB
testcase_65 AC 1,314 ms
6,940 KB
testcase_66 AC 309 ms
6,940 KB
testcase_67 AC 1,210 ms
6,940 KB
testcase_68 AC 1,864 ms
6,944 KB
testcase_69 AC 1,196 ms
6,948 KB
testcase_70 AC 437 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define dvd 100000000

using namespace std;

//https://mathworld.wolfram.com/Circle-CircleIntersection.html
double f(double r,double d){
  if(2*r <= d){return 0.0;}
  double ac=acos(d/(2.0*r)),res,subt;
  res=2.0*r*r*ac;
  subt=0.5*d;
  subt*=sqrt((4.0*r*r-d*d));
  return res-subt;
}

int main(){
  double r,h,d,res=0.0;
  double s1,s2,bh;
  cin >> r >> h >> d;
  assert(r<=10000.0 && h<=10000.0);
  assert(d <= 2.0*r);
  bh=(h/(double)dvd);
  s1=f(r,d);
  for(int i=1;i<=dvd;i++){
    double cr=r*(((double)(dvd-i))/((double)dvd));
    s2=f(cr,d);
    res+=(s1+s2);
    s1=s2;
  }
  printf("%.12lf\n",res*bh/2.0);
}
0