結果

問題 No.419 直角三角形
ユーザー HujiLeeHujiLee
提出日時 2016-11-25 23:34:55
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 947 ms / 1,000 ms
コード長 413 bytes
コンパイル時間 8,719 ms
コンパイル使用メモリ 270,656 KB
実行使用メモリ 63,256 KB
最終ジャッジ日時 2024-06-29 20:33:37
合計ジャッジ時間 31,695 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 910 ms
63,032 KB
testcase_01 AC 895 ms
63,128 KB
testcase_02 AC 903 ms
63,020 KB
testcase_03 AC 908 ms
63,128 KB
testcase_04 AC 909 ms
62,876 KB
testcase_05 AC 947 ms
63,000 KB
testcase_06 AC 886 ms
63,012 KB
testcase_07 AC 896 ms
63,256 KB
testcase_08 AC 886 ms
62,944 KB
testcase_09 AC 876 ms
62,956 KB
testcase_10 AC 898 ms
63,168 KB
testcase_11 AC 902 ms
62,980 KB
testcase_12 AC 898 ms
63,024 KB
testcase_13 AC 897 ms
63,104 KB
testcase_14 AC 888 ms
62,908 KB
testcase_15 AC 896 ms
63,028 KB
testcase_16 AC 901 ms
63,204 KB
testcase_17 AC 907 ms
63,096 KB
testcase_18 AC 896 ms
63,244 KB
testcase_19 AC 915 ms
62,812 KB
testcase_20 AC 908 ms
62,876 KB
testcase_21 AC 911 ms
62,976 KB
testcase_22 AC 911 ms
63,088 KB
権限があれば一括ダウンロードができます

ソースコード

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)
  if(long!=short){
    println(
      math.pow(
        1*math.pow(long,2)-math.pow(short,2)
        , 0.5
      )
    )
  }else{
    println(
      math.pow(2,0.5)*long
    )
  }


}
0