結果
| 問題 | No.735 接線 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2020-07-09 23:00:43 | 
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 2,000 ms | 
| コード長 | 212 bytes | 
| コンパイル時間 | 1,910 ms | 
| コンパイル使用メモリ | 165,824 KB | 
| 実行使用メモリ | 5,248 KB | 
| 最終ジャッジ日時 | 2024-10-08 15:42:19 | 
| 合計ジャッジ時間 | 3,083 ms | 
| ジャッジサーバーID (参考情報) | judge2 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 30 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define fx(x) cout<<fixed<<setprecision(x)
int main(){
	double r,d; cin>>r>>d;
	double ang=acos(r/d);
	double ans=r*r+d*d-2*r*d*cos(ang);
	fx(10)<<sqrt(ans)<<endl;
}
            
            
            
        