結果

問題 No.419 直角三角形
ユーザー ixTL255ixTL255
提出日時 2016-09-10 00:57:36
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 830 ms / 1,000 ms
コード長 246 bytes
コンパイル時間 9,399 ms
コンパイル使用メモリ 272,716 KB
実行使用メモリ 65,224 KB
最終ジャッジ日時 2024-06-29 17:37:14
合計ジャッジ時間 29,338 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 809 ms
64,860 KB
testcase_01 AC 791 ms
65,132 KB
testcase_02 AC 768 ms
64,880 KB
testcase_03 AC 802 ms
64,844 KB
testcase_04 AC 830 ms
64,984 KB
testcase_05 AC 828 ms
64,792 KB
testcase_06 AC 796 ms
64,960 KB
testcase_07 AC 777 ms
64,960 KB
testcase_08 AC 774 ms
65,104 KB
testcase_09 AC 815 ms
64,788 KB
testcase_10 AC 783 ms
64,884 KB
testcase_11 AC 798 ms
64,936 KB
testcase_12 AC 798 ms
64,964 KB
testcase_13 AC 807 ms
65,096 KB
testcase_14 AC 792 ms
65,160 KB
testcase_15 AC 799 ms
65,224 KB
testcase_16 AC 800 ms
64,932 KB
testcase_17 AC 813 ms
65,072 KB
testcase_18 AC 793 ms
64,888 KB
testcase_19 AC 799 ms
64,804 KB
testcase_20 AC 796 ms
64,972 KB
testcase_21 AC 791 ms
65,064 KB
testcase_22 AC 781 ms
64,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine
import scala.math._

object Main extends App {
	val ab = readLine().split(" ").map(_.toInt)
	if(ab(0) == ab(1)){
		println(sqrt(ab(0)*ab(0)+ab(1)*ab(1)))
	}
	else {
		println(sqrt(abs(ab(0)*ab(0)-ab(1)*ab(1))))
	}
}
0