結果

問題 No.419 直角三角形
ユーザー HujiLeeHujiLee
提出日時 2016-11-25 23:32:01
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 322 bytes
コンパイル時間 10,098 ms
コンパイル使用メモリ 268,312 KB
実行使用メモリ 65,180 KB
最終ジャッジ日時 2024-06-29 20:32:45
合計ジャッジ時間 31,808 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 892 ms
62,820 KB
testcase_01 AC 893 ms
62,964 KB
testcase_02 AC 892 ms
63,044 KB
testcase_03 AC 888 ms
63,068 KB
testcase_04 AC 895 ms
63,024 KB
testcase_05 AC 892 ms
63,276 KB
testcase_06 AC 884 ms
63,016 KB
testcase_07 AC 893 ms
63,092 KB
testcase_08 WA -
testcase_09 AC 894 ms
63,008 KB
testcase_10 AC 898 ms
62,992 KB
testcase_11 AC 898 ms
62,752 KB
testcase_12 WA -
testcase_13 AC 900 ms
63,092 KB
testcase_14 AC 890 ms
62,980 KB
testcase_15 AC 897 ms
62,820 KB
testcase_16 AC 906 ms
62,984 KB
testcase_17 AC 885 ms
62,960 KB
testcase_18 AC 886 ms
63,216 KB
testcase_19 AC 895 ms
63,232 KB
testcase_20 AC 899 ms
63,200 KB
testcase_21 AC 886 ms
63,016 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn

/**
  * Created by Administrator on 2016/11/25 0025.
  */
object Main extends App {
  val Array(a, b) = StdIn.readLine().split(" ").map(x => x.toInt)
  val long = math.max(a, b)
  val short = math.min(a, b)
  println(
    math.pow(
      1*math.pow(long,2)-math.pow(short,2)
      , 0.5
    )
  )

}
0