結果

問題 No.419 直角三角形
ユーザー mura40424mura40424
提出日時 2016-12-18 14:19:20
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 394 ms / 1,000 ms
コード長 594 bytes
コンパイル時間 11,727 ms
コンパイル使用メモリ 428,100 KB
実行使用メモリ 53,016 KB
最終ジャッジ日時 2024-11-20 07:18:56
合計ジャッジ時間 21,681 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 384 ms
52,852 KB
testcase_01 AC 368 ms
52,852 KB
testcase_02 AC 374 ms
52,900 KB
testcase_03 AC 385 ms
52,828 KB
testcase_04 AC 371 ms
52,940 KB
testcase_05 AC 375 ms
52,864 KB
testcase_06 AC 381 ms
52,932 KB
testcase_07 AC 394 ms
52,800 KB
testcase_08 AC 374 ms
53,000 KB
testcase_09 AC 374 ms
52,752 KB
testcase_10 AC 373 ms
52,888 KB
testcase_11 AC 377 ms
52,904 KB
testcase_12 AC 374 ms
52,744 KB
testcase_13 AC 378 ms
52,888 KB
testcase_14 AC 377 ms
52,944 KB
testcase_15 AC 380 ms
52,836 KB
testcase_16 AC 375 ms
52,936 KB
testcase_17 AC 371 ms
52,844 KB
testcase_18 AC 372 ms
52,876 KB
testcase_19 AC 382 ms
53,000 KB
testcase_20 AC 372 ms
52,976 KB
testcase_21 AC 373 ms
53,016 KB
testcase_22 AC 384 ms
52,880 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val a_b : List<Int> = readLine()!!.split(" ").map { it.toInt() }
    val result = "%.10f".format(getThirdSide(a_b))
    println(result)
}

fun getThirdSide(ab : List<Int>) : Double {
    val a = ab.first().toDouble()
    val b = ab.last().toDouble()
    if (a == b) {
        val c2 = Math.pow(a, 2.0) + Math.pow(b, 2.0)
        return Math.sqrt(c2)
    } else if (a > b) {
        val c2 = Math.pow(a, 2.0) - Math.pow(b, 2.0)
        return Math.sqrt(c2)
    } else {
        val c2 = Math.pow(b, 2.0) - Math.pow(a, 2.0)
        return Math.sqrt(c2)
    }
}
0