結果

問題 No.419 直角三角形
ユーザー sekihankamibanzsekihankamibanz
提出日時 2018-10-28 10:46:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 146 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,424 KB
最終ジャッジ日時 2024-11-19 06:59:53
合計ジャッジ時間 12,546 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 458 ms
44,160 KB
testcase_01 AC 459 ms
43,908 KB
testcase_02 AC 457 ms
44,040 KB
testcase_03 AC 454 ms
43,788 KB
testcase_04 AC 454 ms
44,036 KB
testcase_05 AC 454 ms
43,664 KB
testcase_06 AC 456 ms
43,908 KB
testcase_07 AC 461 ms
43,652 KB
testcase_08 WA -
testcase_09 AC 458 ms
43,896 KB
testcase_10 AC 460 ms
43,892 KB
testcase_11 AC 460 ms
43,912 KB
testcase_12 WA -
testcase_13 AC 459 ms
43,784 KB
testcase_14 AC 458 ms
43,788 KB
testcase_15 AC 461 ms
44,304 KB
testcase_16 AC 463 ms
44,036 KB
testcase_17 AC 458 ms
43,644 KB
testcase_18 AC 455 ms
44,036 KB
testcase_19 AC 458 ms
43,652 KB
testcase_20 AC 457 ms
43,644 KB
testcase_21 AC 462 ms
44,016 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


a, b = [int(x) for x in input().split(' ')]
if b > a:
    a, b = b, a

c = np.sqrt(np.array([a ** 2 - b ** 2]))

print(c[0])
0