結果

問題 No.419 直角三角形
ユーザー kohei2019kohei2019
提出日時 2022-01-23 13:24:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 70 bytes
コンパイル時間 618 ms
コンパイル使用メモリ 87,016 KB
実行使用メモリ 71,944 KB
最終ジャッジ日時 2023-08-19 18:05:09
合計ジャッジ時間 3,685 ms
ジャッジサーバーID
(参考情報)
judge13 / judge10
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
71,404 KB
testcase_01 AC 67 ms
71,412 KB
testcase_02 AC 67 ms
71,504 KB
testcase_03 AC 66 ms
71,560 KB
testcase_04 AC 67 ms
71,840 KB
testcase_05 AC 67 ms
71,896 KB
testcase_06 AC 66 ms
71,672 KB
testcase_07 AC 68 ms
71,792 KB
testcase_08 WA -
testcase_09 AC 65 ms
71,584 KB
testcase_10 AC 68 ms
71,880 KB
testcase_11 AC 68 ms
71,660 KB
testcase_12 WA -
testcase_13 AC 67 ms
71,668 KB
testcase_14 AC 66 ms
71,720 KB
testcase_15 AC 66 ms
71,600 KB
testcase_16 AC 68 ms
71,472 KB
testcase_17 AC 66 ms
71,596 KB
testcase_18 AC 69 ms
71,944 KB
testcase_19 AC 67 ms
71,660 KB
testcase_20 AC 67 ms
71,828 KB
testcase_21 AC 66 ms
71,664 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b = map(int,input().split())
print((max(a,b)**2-min(a,b)**2)**(1/2))
0