結果
| 問題 | No.735 接線 | 
| コンテスト | |
| ユーザー |  d_sei | 
| 提出日時 | 2019-09-07 19:37:33 | 
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 242 bytes | 
| コンパイル時間 | 648 ms | 
| コンパイル使用メモリ | 80,600 KB | 
| 実行使用メモリ | 6,948 KB | 
| 最終ジャッジ日時 | 2024-06-27 02:15:48 | 
| 合計ジャッジ時間 | 1,611 ms | 
| ジャッジサーバーID (参考情報) | judge2 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 5 WA * 25 | 
ソースコード
#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(r * r + d * d) << endl;
}
	
            
            
            
        