結果

問題 No.419 直角三角形
ユーザー 826814741_6826814741_6
提出日時 2019-01-07 19:34:34
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 311 ms / 1,000 ms
コード長 225 bytes
コンパイル時間 10,246 ms
コンパイル使用メモリ 439,024 KB
実行使用メモリ 52,024 KB
最終ジャッジ日時 2024-11-20 17:24:38
合計ジャッジ時間 18,067 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 291 ms
51,928 KB
testcase_01 AC 286 ms
51,684 KB
testcase_02 AC 278 ms
51,792 KB
testcase_03 AC 282 ms
51,696 KB
testcase_04 AC 293 ms
51,860 KB
testcase_05 AC 286 ms
51,804 KB
testcase_06 AC 303 ms
51,700 KB
testcase_07 AC 290 ms
51,560 KB
testcase_08 AC 287 ms
51,552 KB
testcase_09 AC 284 ms
51,724 KB
testcase_10 AC 276 ms
51,568 KB
testcase_11 AC 283 ms
51,860 KB
testcase_12 AC 282 ms
51,620 KB
testcase_13 AC 311 ms
51,560 KB
testcase_14 AC 278 ms
51,676 KB
testcase_15 AC 288 ms
51,700 KB
testcase_16 AC 286 ms
51,872 KB
testcase_17 AC 292 ms
51,612 KB
testcase_18 AC 295 ms
51,700 KB
testcase_19 AC 294 ms
51,692 KB
testcase_20 AC 289 ms
52,024 KB
testcase_21 AC 285 ms
51,920 KB
testcase_22 AC 289 ms
51,724 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import kotlin.math.*

fun f(a: Double, b: Double): Double =
    if (a==b) sqrt(2F)*a else sqrt(abs(a*a-b*b))

fun main(args: Array<String>) {
    val (a,b) = readLine()!!.split(' ').map(String::toDouble)
    println(f(a,b))
}
0