結果

問題 No.419 直角三角形
ユーザー YCescaYCesca
提出日時 2016-09-09 23:05:30
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 33 ms / 1,000 ms
コード長 190 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-11-16 10:53:48
合計ジャッジ時間 1,687 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import *
from decimal import *
a , b = map(int, input().split())
x = [Decimal(i**(1/2)) for i in (b**2 - a**2, a**2 - b**2, a**2 + b**2) if i > 0]
print("{0:.10f}".format(min(x)) )
0