結果

問題 No.2352 Sharpened Knife in Fall
ユーザー SSRSSSRS
提出日時 2023-06-16 21:31:54
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 693 ms / 3,000 ms
コード長 524 bytes
コンパイル時間 1,638 ms
コンパイル使用メモリ 167,300 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-24 13:08:10
合計ジャッジ時間 18,024 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const double PI = acos(-1);
double F(double x){
  return (x * sqrt(1 - x * x) + asin(x)) / 2;
}
int main(){
  cout << fixed << setprecision(20);
  int R, K;
  cin >> R >> K;
  for (int i = 1; i <= K; i++){
    double tv = -1, fv = 1;
    for (int j = 0; j < 100; j++){
      double mid = (tv + fv) / 2;
      double area = F(mid) - F(-1);
      if (area / PI * 2 * (K + 1) <= i){
        tv = mid;
      } else {
        fv = mid;
      }
    }
    cout << tv * R << endl;
  }
}
0