結果

問題 No.419 直角三角形
ユーザー mura40424mura40424
提出日時 2016-12-18 14:14:15
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 337 ms / 1,000 ms
コード長 612 bytes
コンパイル時間 12,084 ms
コンパイル使用メモリ 427,920 KB
実行使用メモリ 57,972 KB
最終ジャッジ日時 2024-11-20 07:18:11
合計ジャッジ時間 18,709 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 321 ms
56,736 KB
testcase_01 AC 319 ms
57,780 KB
testcase_02 AC 319 ms
57,972 KB
testcase_03 AC 324 ms
57,652 KB
testcase_04 AC 327 ms
57,816 KB
testcase_05 AC 320 ms
57,892 KB
testcase_06 AC 327 ms
57,744 KB
testcase_07 AC 325 ms
57,668 KB
testcase_08 AC 323 ms
57,912 KB
testcase_09 AC 323 ms
57,744 KB
testcase_10 AC 325 ms
57,608 KB
testcase_11 AC 324 ms
57,716 KB
testcase_12 AC 329 ms
57,752 KB
testcase_13 AC 323 ms
57,612 KB
testcase_14 AC 320 ms
57,824 KB
testcase_15 AC 329 ms
57,620 KB
testcase_16 AC 318 ms
57,776 KB
testcase_17 AC 320 ms
57,888 KB
testcase_18 AC 330 ms
57,916 KB
testcase_19 AC 319 ms
57,704 KB
testcase_20 AC 327 ms
57,612 KB
testcase_21 AC 337 ms
57,852 KB
testcase_22 AC 326 ms
57,608 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 = java.lang.String.format("%.10f", 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