結果

問題 No.419 直角三角形
ユーザー TatsuyaObaTatsuyaOba
提出日時 2016-12-18 13:40:59
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 224 bytes
コンパイル時間 7,636 ms
コンパイル使用メモリ 254,344 KB
実行使用メモリ 64,752 KB
最終ジャッジ日時 2024-06-29 21:44:48
合計ジャッジ時間 28,699 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 859 ms
64,516 KB
testcase_01 AC 852 ms
64,560 KB
testcase_02 AC 854 ms
64,708 KB
testcase_03 AC 840 ms
64,564 KB
testcase_04 AC 838 ms
64,536 KB
testcase_05 AC 845 ms
64,620 KB
testcase_06 AC 848 ms
64,700 KB
testcase_07 AC 804 ms
64,724 KB
testcase_08 WA -
testcase_09 AC 842 ms
64,656 KB
testcase_10 AC 857 ms
64,684 KB
testcase_11 AC 845 ms
64,732 KB
testcase_12 WA -
testcase_13 AC 833 ms
64,560 KB
testcase_14 AC 851 ms
64,720 KB
testcase_15 AC 865 ms
64,484 KB
testcase_16 AC 857 ms
64,612 KB
testcase_17 AC 848 ms
64,532 KB
testcase_18 AC 849 ms
64,688 KB
testcase_19 AC 853 ms
64,576 KB
testcase_20 AC 868 ms
64,596 KB
testcase_21 AC 860 ms
64,688 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

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(math.sqrt(math.abs(A * A - B * B)))
  }
}
0