結果

問題 No.1319 最強とんがりコーン
ユーザー DaYuanChiDaYuanChi
提出日時 2021-01-21 20:36:27
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 500 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 1,923 ms
コンパイル使用メモリ 165,588 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-25 01:26:30
合計ジャッジ時間 30,911 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 234 ms
5,248 KB
testcase_01 AC 243 ms
5,248 KB
testcase_02 AC 437 ms
5,248 KB
testcase_03 AC 461 ms
5,248 KB
testcase_04 AC 270 ms
5,248 KB
testcase_05 AC 406 ms
5,248 KB
testcase_06 AC 430 ms
5,248 KB
testcase_07 AC 460 ms
5,248 KB
testcase_08 AC 428 ms
5,248 KB
testcase_09 AC 409 ms
5,248 KB
testcase_10 AC 493 ms
5,248 KB
testcase_11 AC 453 ms
5,248 KB
testcase_12 AC 422 ms
5,248 KB
testcase_13 AC 442 ms
5,248 KB
testcase_14 AC 482 ms
5,248 KB
testcase_15 AC 452 ms
5,248 KB
testcase_16 AC 485 ms
5,248 KB
testcase_17 AC 388 ms
5,248 KB
testcase_18 AC 469 ms
5,248 KB
testcase_19 AC 351 ms
5,248 KB
testcase_20 AC 232 ms
5,248 KB
testcase_21 AC 245 ms
5,248 KB
testcase_22 AC 231 ms
5,248 KB
testcase_23 AC 234 ms
5,248 KB
testcase_24 AC 233 ms
5,248 KB
testcase_25 AC 232 ms
5,248 KB
testcase_26 AC 232 ms
5,248 KB
testcase_27 AC 230 ms
5,248 KB
testcase_28 AC 232 ms
5,248 KB
testcase_29 AC 229 ms
5,248 KB
testcase_30 AC 233 ms
5,248 KB
testcase_31 AC 235 ms
5,248 KB
testcase_32 AC 440 ms
5,248 KB
testcase_33 AC 316 ms
5,248 KB
testcase_34 AC 227 ms
5,248 KB
testcase_35 AC 235 ms
5,248 KB
testcase_36 AC 231 ms
5,248 KB
testcase_37 AC 237 ms
5,248 KB
testcase_38 AC 238 ms
5,248 KB
testcase_39 AC 267 ms
5,248 KB
testcase_40 AC 450 ms
5,248 KB
testcase_41 AC 500 ms
5,248 KB
testcase_42 AC 491 ms
5,248 KB
testcase_43 AC 499 ms
5,248 KB
testcase_44 AC 480 ms
5,248 KB
testcase_45 AC 489 ms
5,248 KB
testcase_46 AC 409 ms
5,248 KB
testcase_47 AC 495 ms
5,248 KB
testcase_48 AC 451 ms
5,248 KB
testcase_49 AC 490 ms
5,248 KB
testcase_50 AC 499 ms
5,248 KB
testcase_51 AC 483 ms
5,248 KB
testcase_52 AC 497 ms
5,248 KB
testcase_53 AC 488 ms
5,248 KB
testcase_54 AC 475 ms
5,248 KB
testcase_55 AC 478 ms
5,248 KB
testcase_56 AC 494 ms
5,248 KB
testcase_57 AC 486 ms
5,248 KB
testcase_58 AC 489 ms
5,248 KB
testcase_59 AC 494 ms
5,248 KB
testcase_60 AC 211 ms
5,248 KB
testcase_61 AC 206 ms
5,248 KB
testcase_62 AC 216 ms
5,248 KB
testcase_63 AC 209 ms
5,248 KB
testcase_64 AC 433 ms
5,248 KB
testcase_65 AC 431 ms
5,248 KB
testcase_66 AC 208 ms
5,248 KB
testcase_67 AC 225 ms
5,248 KB
testcase_68 AC 404 ms
5,248 KB
testcase_69 AC 227 ms
5,248 KB
testcase_70 AC 492 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

double r, h, d;

//断面積S
double S(double x){
  return 2*x*x*acos(d/(2.0*x))-d*sqrt(x*x-d*d/4);
}

int main(){
  cin >> r >> h >> d;
  double range = r - d*0.5;
  int num = 10000000;
  double dr = range / num;
  double vol = 0;
  for(int i = 0; i < num; i++){
    vol += h/r*(S(d*0.5+i*dr)+S(d*0.5+(i+1)*dr))*dr/2;
  }
  printf("%.10f\n",vol);
  return 0;
}
    
  
0