結果

問題 No.419 直角三角形
ユーザー aRacaRac
提出日時 2016-11-23 20:53:20
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 888 ms / 1,000 ms
コード長 305 bytes
コンパイル時間 9,920 ms
コンパイル使用メモリ 248,148 KB
実行使用メモリ 63,012 KB
最終ジャッジ日時 2024-06-29 20:27:01
合計ジャッジ時間 31,919 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 868 ms
62,920 KB
testcase_01 AC 870 ms
62,864 KB
testcase_02 AC 861 ms
62,840 KB
testcase_03 AC 856 ms
62,924 KB
testcase_04 AC 866 ms
62,676 KB
testcase_05 AC 855 ms
62,880 KB
testcase_06 AC 842 ms
62,936 KB
testcase_07 AC 848 ms
62,936 KB
testcase_08 AC 870 ms
62,912 KB
testcase_09 AC 878 ms
62,884 KB
testcase_10 AC 881 ms
62,964 KB
testcase_11 AC 875 ms
62,996 KB
testcase_12 AC 879 ms
62,804 KB
testcase_13 AC 876 ms
62,868 KB
testcase_14 AC 869 ms
62,804 KB
testcase_15 AC 872 ms
62,844 KB
testcase_16 AC 876 ms
62,664 KB
testcase_17 AC 882 ms
62,780 KB
testcase_18 AC 880 ms
62,704 KB
testcase_19 AC 879 ms
62,776 KB
testcase_20 AC 880 ms
62,920 KB
testcase_21 AC 883 ms
62,884 KB
testcase_22 AC 888 ms
63,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Main {
    def solve(n: Int, m: Int) = {
        if (n == m) math.sqrt(math.pow(m, 2) + math.pow(n, 2))
        else math.sqrt(math.abs(math.pow(n, 2) - math.pow(m, 2)))
    }
    val Array(a, b) = io.StdIn.readLine.split(" ")
    def main(args: Array[String]) = println(solve(a.toInt, b.toInt))
}
0