結果

問題 No.419 直角三角形
ユーザー aRacaRac
提出日時 2016-11-23 20:49:28
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 221 bytes
コンパイル時間 7,278 ms
コンパイル使用メモリ 248,124 KB
実行使用メモリ 64,660 KB
最終ジャッジ日時 2024-06-29 20:28:36
合計ジャッジ時間 25,704 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 755 ms
64,384 KB
testcase_01 AC 759 ms
64,592 KB
testcase_02 AC 751 ms
64,304 KB
testcase_03 AC 757 ms
64,452 KB
testcase_04 AC 806 ms
64,560 KB
testcase_05 AC 785 ms
64,280 KB
testcase_06 AC 752 ms
64,660 KB
testcase_07 AC 779 ms
64,584 KB
testcase_08 WA -
testcase_09 AC 771 ms
64,516 KB
testcase_10 AC 760 ms
64,456 KB
testcase_11 AC 763 ms
64,380 KB
testcase_12 WA -
testcase_13 AC 761 ms
64,476 KB
testcase_14 AC 770 ms
64,288 KB
testcase_15 AC 791 ms
64,424 KB
testcase_16 AC 756 ms
64,184 KB
testcase_17 AC 792 ms
64,224 KB
testcase_18 AC 763 ms
64,504 KB
testcase_19 AC 758 ms
64,420 KB
testcase_20 AC 758 ms
64,452 KB
testcase_21 AC 747 ms
64,400 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

object Main {
    def solve(n: Int, m: Int) = 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