結果
問題 | No.419 直角三角形 |
ユーザー | hanorver |
提出日時 | 2016-09-09 22:28:59 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 304 bytes |
コンパイル時間 | 596 ms |
コンパイル使用メモリ | 69,664 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-16 10:21:08 |
合計ジャッジ時間 | 1,428 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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; }