結果

問題 No.419 直角三角形
ユーザー sekihankamibanzsekihankamibanz
提出日時 2018-10-28 10:55:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 516 ms / 1,000 ms
コード長 216 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 43,804 KB
最終ジャッジ日時 2024-11-19 07:00:38
合計ジャッジ時間 13,426 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 514 ms
43,416 KB
testcase_01 AC 506 ms
43,428 KB
testcase_02 AC 516 ms
43,292 KB
testcase_03 AC 509 ms
43,548 KB
testcase_04 AC 513 ms
43,416 KB
testcase_05 AC 515 ms
43,428 KB
testcase_06 AC 511 ms
43,556 KB
testcase_07 AC 509 ms
43,424 KB
testcase_08 AC 511 ms
43,804 KB
testcase_09 AC 506 ms
43,440 KB
testcase_10 AC 510 ms
43,676 KB
testcase_11 AC 511 ms
43,552 KB
testcase_12 AC 515 ms
43,420 KB
testcase_13 AC 509 ms
43,548 KB
testcase_14 AC 513 ms
43,416 KB
testcase_15 AC 513 ms
43,548 KB
testcase_16 AC 513 ms
43,284 KB
testcase_17 AC 513 ms
43,552 KB
testcase_18 AC 514 ms
43,548 KB
testcase_19 AC 511 ms
43,540 KB
testcase_20 AC 507 ms
43,544 KB
testcase_21 AC 514 ms
43,292 KB
testcase_22 AC 507 ms
43,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


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

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

else:
    c = np.sqrt(np.array([a ** 2 + b ** 2]))
    
print(c[0])
0