結果

問題 No.419 直角三角形
ユーザー dangodango
提出日時 2023-06-15 21:46:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 1,000 ms
コード長 93 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 53,520 KB
最終ジャッジ日時 2024-06-23 19:28:41
合計ジャッジ時間 2,023 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,520 KB
testcase_01 AC 40 ms
52,652 KB
testcase_02 AC 40 ms
53,352 KB
testcase_03 AC 36 ms
53,152 KB
testcase_04 AC 37 ms
52,408 KB
testcase_05 AC 37 ms
52,128 KB
testcase_06 AC 37 ms
52,472 KB
testcase_07 AC 36 ms
53,404 KB
testcase_08 AC 38 ms
52,872 KB
testcase_09 AC 36 ms
52,948 KB
testcase_10 AC 36 ms
52,556 KB
testcase_11 AC 37 ms
52,684 KB
testcase_12 AC 36 ms
53,092 KB
testcase_13 AC 36 ms
53,004 KB
testcase_14 AC 36 ms
53,284 KB
testcase_15 AC 36 ms
52,564 KB
testcase_16 AC 37 ms
52,592 KB
testcase_17 AC 37 ms
52,484 KB
testcase_18 AC 36 ms
52,660 KB
testcase_19 AC 37 ms
52,876 KB
testcase_20 AC 36 ms
52,384 KB
testcase_21 AC 37 ms
53,516 KB
testcase_22 AC 42 ms
52,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B = map(int,input().split())
print(abs(A ** 2 + (B ** 2 if A == B else -(B ** 2))) ** 0.5)
0