結果

問題 No.605 板挟みの球面
ユーザー pekempeypekempey
提出日時 2017-12-05 00:06:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 314 bytes
コンパイル時間 654 ms
コンパイル使用メモリ 72,240 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 03:12:41
合計ジャッジ時間 965 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <cmath>

using namespace std;

const double pi = acos(-1);

double f(double x) {
  return pi * (1 - x*x);
}

int main() {
  double a, b;
  cin >> a >> b;

  double ans = (f(a) + 4*f((a + b) / 2) + f(b)) * (b - a) / 2;
  printf("%.20f\n", ans);
}
0