結果

問題 No.419 直角三角形
ユーザー TatsuyaObaTatsuyaOba
提出日時 2016-12-18 13:52:01
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 902 ms / 1,000 ms
コード長 300 bytes
コンパイル時間 12,098 ms
コンパイル使用メモリ 259,836 KB
実行使用メモリ 63,276 KB
最終ジャッジ日時 2024-06-29 21:46:17
合計ジャッジ時間 30,179 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 882 ms
63,160 KB
testcase_01 AC 879 ms
63,172 KB
testcase_02 AC 882 ms
62,980 KB
testcase_03 AC 878 ms
63,132 KB
testcase_04 AC 877 ms
63,080 KB
testcase_05 AC 880 ms
62,968 KB
testcase_06 AC 894 ms
62,992 KB
testcase_07 AC 890 ms
62,888 KB
testcase_08 AC 893 ms
63,148 KB
testcase_09 AC 900 ms
62,984 KB
testcase_10 AC 888 ms
63,072 KB
testcase_11 AC 892 ms
63,120 KB
testcase_12 AC 879 ms
63,040 KB
testcase_13 AC 882 ms
62,928 KB
testcase_14 AC 883 ms
63,124 KB
testcase_15 AC 879 ms
63,040 KB
testcase_16 AC 880 ms
63,144 KB
testcase_17 AC 895 ms
63,124 KB
testcase_18 AC 890 ms
63,052 KB
testcase_19 AC 890 ms
63,276 KB
testcase_20 AC 902 ms
62,940 KB
testcase_21 AC 891 ms
63,132 KB
testcase_22 AC 887 ms
63,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn

object Main {
  def main(args: Array[String]): Unit = {
    val in = StdIn.readLine().split(" ").map(_.toInt)
    val A = in(0)
    val B = in(1)
    println(
      if (A == B)
        math.sqrt(A * A + B * B)
      else
        math.sqrt(math.abs(A * A - B * B))
    )
  }
}
0