結果
| 問題 | No.419 直角三角形 |
| コンテスト | |
| ユーザー |
hanorver
|
| 提出日時 | 2016-09-09 22:28:59 |
| 言語 | C++14 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 1 ms / 1,000 ms |
| + 283µs | |
| コード長 | 304 bytes |
| 記録 | |
| コンパイル時間 | 314 ms |
| コンパイル使用メモリ | 88,172 KB |
| 実行使用メモリ | 9,920 KB |
| 最終ジャッジ日時 | 2026-09-24 12:41:56 |
| 合計ジャッジ時間 | 2,181 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
ソースコード
#include<iostream>
#include<string>
#include<cmath>
#include<algorithm>
#include<cstdio>
int main() {
int a, b;
double ans;
std::cin >> a >> b;
if (a > b) std::swap(a, b);
if (a != b) {
ans = std::sqrt(b*b - a*a);
} else {
ans = std::sqrt(b*b + a*a);
}
printf("%.10f\n", ans);
return 0;
}
hanorver