結果

問題 No.735 接線
ユーザー 👑 obakyan
提出日時 2019-03-19 23:06:02
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 220 bytes
コンパイル時間 535 ms
コンパイル使用メモリ 64,024 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-14 12:56:50
合計ジャッジ時間 1,774 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdlib>
#include <vector>
#include <algorithm>
#include <cmath>
int main()
{
    double a,b;
    std::cin >> a >> b;
    std::cout << std::sqrt(b * b - a * a) << std::endl;
    return 0;
}
0