結果

問題 No.172 UFOを捕まえろ
ユーザー rutilicusrutilicus
提出日時 2021-02-13 16:25:18
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 284 ms / 5,000 ms
コード長 417 bytes
コンパイル時間 10,074 ms
コンパイル使用メモリ 430,788 KB
実行使用メモリ 51,804 KB
最終ジャッジ日時 2024-07-20 19:27:36
合計ジャッジ時間 17,848 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 272 ms
51,784 KB
testcase_01 AC 268 ms
51,572 KB
testcase_02 AC 275 ms
51,772 KB
testcase_03 AC 266 ms
51,804 KB
testcase_04 AC 284 ms
51,696 KB
testcase_05 AC 271 ms
51,796 KB
testcase_06 AC 271 ms
51,532 KB
testcase_07 AC 273 ms
51,504 KB
testcase_08 AC 273 ms
51,560 KB
testcase_09 AC 270 ms
51,692 KB
testcase_10 AC 272 ms
51,580 KB
testcase_11 AC 271 ms
51,696 KB
testcase_12 AC 269 ms
51,584 KB
testcase_13 AC 278 ms
51,660 KB
testcase_14 AC 282 ms
51,620 KB
testcase_15 AC 278 ms
51,688 KB
testcase_16 AC 268 ms
51,456 KB
testcase_17 AC 277 ms
51,788 KB
testcase_18 AC 270 ms
51,688 KB
testcase_19 AC 267 ms
51,664 KB
testcase_20 AC 268 ms
51,684 KB
testcase_21 AC 276 ms
51,800 KB
testcase_22 AC 269 ms
51,660 KB
testcase_23 AC 282 ms
51,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.math.abs
import kotlin.math.ceil
import kotlin.math.sqrt

fun main() {
    val builder = StringBuilder()

    val (x, y, r) = readInputLine().split(" ").map { it.toInt() }

    // 何も分からんから競プロ向いてない
    builder.appendLine((abs(x) + abs(y) + ceil(sqrt(2.0) * r.toDouble())).toLong())

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}
0