結果

問題 No.1319 最強とんがりコーン
ユーザー DaYuanChiDaYuanChi
提出日時 2021-01-21 20:36:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 441 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 1,435 ms
コンパイル使用メモリ 165,264 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-07 03:29:37
合計ジャッジ時間 27,211 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 207 ms
5,248 KB
testcase_01 AC 214 ms
5,376 KB
testcase_02 AC 382 ms
5,376 KB
testcase_03 AC 409 ms
5,376 KB
testcase_04 AC 237 ms
5,376 KB
testcase_05 AC 358 ms
5,376 KB
testcase_06 AC 367 ms
5,376 KB
testcase_07 AC 402 ms
5,376 KB
testcase_08 AC 372 ms
5,376 KB
testcase_09 AC 353 ms
5,376 KB
testcase_10 AC 431 ms
5,376 KB
testcase_11 AC 399 ms
5,376 KB
testcase_12 AC 366 ms
5,376 KB
testcase_13 AC 389 ms
5,376 KB
testcase_14 AC 432 ms
5,376 KB
testcase_15 AC 401 ms
5,376 KB
testcase_16 AC 435 ms
5,376 KB
testcase_17 AC 335 ms
5,376 KB
testcase_18 AC 415 ms
5,376 KB
testcase_19 AC 314 ms
5,376 KB
testcase_20 AC 202 ms
5,376 KB
testcase_21 AC 213 ms
5,376 KB
testcase_22 AC 204 ms
5,376 KB
testcase_23 AC 202 ms
5,376 KB
testcase_24 AC 197 ms
5,376 KB
testcase_25 AC 209 ms
5,376 KB
testcase_26 AC 206 ms
5,376 KB
testcase_27 AC 203 ms
5,376 KB
testcase_28 AC 199 ms
5,376 KB
testcase_29 AC 195 ms
5,376 KB
testcase_30 AC 198 ms
5,376 KB
testcase_31 AC 208 ms
5,376 KB
testcase_32 AC 375 ms
5,376 KB
testcase_33 AC 276 ms
5,376 KB
testcase_34 AC 199 ms
5,376 KB
testcase_35 AC 210 ms
5,376 KB
testcase_36 AC 196 ms
5,376 KB
testcase_37 AC 206 ms
5,376 KB
testcase_38 AC 196 ms
5,376 KB
testcase_39 AC 235 ms
5,376 KB
testcase_40 AC 392 ms
5,376 KB
testcase_41 AC 426 ms
5,376 KB
testcase_42 AC 415 ms
5,376 KB
testcase_43 AC 433 ms
5,376 KB
testcase_44 AC 425 ms
5,376 KB
testcase_45 AC 428 ms
5,376 KB
testcase_46 AC 358 ms
5,376 KB
testcase_47 AC 433 ms
5,376 KB
testcase_48 AC 399 ms
5,376 KB
testcase_49 AC 427 ms
5,376 KB
testcase_50 AC 427 ms
5,376 KB
testcase_51 AC 431 ms
5,376 KB
testcase_52 AC 435 ms
5,376 KB
testcase_53 AC 438 ms
5,376 KB
testcase_54 AC 418 ms
5,376 KB
testcase_55 AC 430 ms
5,376 KB
testcase_56 AC 441 ms
5,376 KB
testcase_57 AC 439 ms
5,376 KB
testcase_58 AC 437 ms
5,376 KB
testcase_59 AC 433 ms
5,376 KB
testcase_60 AC 187 ms
5,376 KB
testcase_61 AC 183 ms
5,376 KB
testcase_62 AC 186 ms
5,376 KB
testcase_63 AC 184 ms
5,376 KB
testcase_64 AC 380 ms
5,376 KB
testcase_65 AC 374 ms
5,376 KB
testcase_66 AC 181 ms
5,376 KB
testcase_67 AC 193 ms
5,376 KB
testcase_68 AC 350 ms
5,376 KB
testcase_69 AC 196 ms
5,376 KB
testcase_70 AC 429 ms
5,376 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