結果

問題 No.735 接線
ユーザー kpinkcat
提出日時 2023-08-21 12:59:19
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 255 bytes
コンパイル時間 1,010 ms
コンパイル使用メモリ 99,472 KB
最終ジャッジ日時 2025-02-16 12:01:51
ジャッジサーバーID
(参考情報)
judge1 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<map>
#include<vector>
#include <algorithm>
#include<math.h>
#include <iomanip>
using namespace std;


int main()
{
    double r, d;
    cin >> r >> d;
    
    cout << fixed << setprecision(7) << pow(d*d - r*r, 0.5) << endl;
}
0