結果

問題 No.735 接線
ユーザー d_sei
提出日時 2019-09-07 19:38:39
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 239 bytes
コンパイル時間 813 ms
コンパイル使用メモリ 80,476 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-27 02:16:50
合計ジャッジ時間 1,790 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include <vector>
#include<cmath>
#include<iomanip>
#include<queue>
using namespace std;
typedef long long int lont;
int main(){
	double r, d;
	cin >> r >> d;
	cout << sqrt( d * d-r*r) << endl;
}


	
0