結果

問題 No.419 直角三角形
ユーザー mmn15277198mmn15277198
提出日時 2021-03-09 21:40:38
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 526 bytes
コンパイル時間 856 ms
コンパイル使用メモリ 90,712 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-11 12:36:28
合計ジャッジ時間 1,752 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <stdio.h>
#include <iomanip>
#include <map>
#include <set>
#include <math.h>

using namespace std;

#define rep(i,n) for(int i = 0; i < (n); i++)

typedef long long ll;
typedef long double lld;

const int MOD = 1000000007;
const lld PI = 3.14159265358979;

int main () {
    cout << fixed << setprecision(15);
    double a , b;
    cin >> a >> b;
    if (a < b)swap(a , b);
    double ans = a * a - b * b;
    cout << sqrt(ans) << endl;
    return 0;
}





0