結果

問題 No.419 直角三角形
ユーザー yansi819yansi819
提出日時 2024-05-19 11:31:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 95 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 54,336 KB
最終ジャッジ日時 2024-05-19 11:31:49
合計ジャッジ時間 2,102 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,208 KB
testcase_01 AC 33 ms
52,596 KB
testcase_02 AC 34 ms
53,540 KB
testcase_03 AC 31 ms
52,280 KB
testcase_04 AC 31 ms
53,352 KB
testcase_05 AC 34 ms
53,204 KB
testcase_06 AC 33 ms
52,384 KB
testcase_07 AC 32 ms
53,288 KB
testcase_08 WA -
testcase_09 AC 32 ms
52,272 KB
testcase_10 AC 35 ms
52,804 KB
testcase_11 AC 32 ms
53,400 KB
testcase_12 WA -
testcase_13 AC 32 ms
53,756 KB
testcase_14 AC 32 ms
53,332 KB
testcase_15 AC 33 ms
52,184 KB
testcase_16 AC 32 ms
52,700 KB
testcase_17 AC 31 ms
52,548 KB
testcase_18 AC 32 ms
52,600 KB
testcase_19 AC 36 ms
52,456 KB
testcase_20 AC 36 ms
53,436 KB
testcase_21 AC 36 ms
52,800 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = map(int, input().split())
if a < b:
    a, b = b, a
c = (a * a - b * b) ** 0.5
print(c)
0