結果

問題 No.419 直角三角形
ユーザー TatsuyaObaTatsuyaOba
提出日時 2016-12-18 13:49:13
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 878 ms / 1,000 ms
コード長 317 bytes
コンパイル時間 8,444 ms
コンパイル使用メモリ 260,444 KB
実行使用メモリ 64,800 KB
最終ジャッジ日時 2024-06-29 21:45:42
合計ジャッジ時間 29,118 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 863 ms
64,652 KB
testcase_01 AC 858 ms
64,648 KB
testcase_02 AC 853 ms
64,724 KB
testcase_03 AC 877 ms
64,600 KB
testcase_04 AC 864 ms
64,680 KB
testcase_05 AC 850 ms
64,572 KB
testcase_06 AC 863 ms
64,668 KB
testcase_07 AC 867 ms
64,524 KB
testcase_08 AC 858 ms
64,788 KB
testcase_09 AC 856 ms
64,732 KB
testcase_10 AC 866 ms
64,556 KB
testcase_11 AC 872 ms
64,800 KB
testcase_12 AC 864 ms
64,544 KB
testcase_13 AC 878 ms
64,652 KB
testcase_14 AC 875 ms
64,580 KB
testcase_15 AC 873 ms
64,600 KB
testcase_16 AC 874 ms
64,736 KB
testcase_17 AC 845 ms
64,576 KB
testcase_18 AC 828 ms
64,532 KB
testcase_19 AC 859 ms
64,644 KB
testcase_20 AC 858 ms
64,756 KB
testcase_21 AC 857 ms
64,736 KB
testcase_22 AC 843 ms
64,720 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((A, B) match {
      case (a, b) if a == b => math.sqrt(a * a + b * b)
      case _ => math.sqrt(math.abs(A * A - B * B))
    })
  }
}
0