結果

問題 No.98 円を描こう
ユーザー Pump0129Pump0129
提出日時 2018-04-08 15:16:54
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 449 bytes
コンパイル時間 10,879 ms
コンパイル使用メモリ 435,612 KB
実行使用メモリ 56,924 KB
最終ジャッジ日時 2024-11-20 15:45:49
合計ジャッジ時間 14,846 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 304 ms
56,840 KB
testcase_01 AC 304 ms
56,636 KB
testcase_02 AC 302 ms
56,720 KB
testcase_03 AC 301 ms
56,808 KB
testcase_04 AC 305 ms
56,756 KB
testcase_05 AC 305 ms
56,824 KB
testcase_06 WA -
testcase_07 AC 307 ms
56,924 KB
testcase_08 AC 303 ms
56,892 KB
testcase_09 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package net.ipipip0129.kotlin.yukicoder

fun main(args: Array<String>) {
    val data = readLine()!!.split(" ")
    val pos = Pos(data[0].toDouble(), data[1].toDouble())

    val dis = Math.sqrt(Math.pow(pos.x, 2.0) + Math.pow(pos.y, 2.0))

    if (dis == dis.toLong().toDouble()) {
        println(dis.toLong() * 2 + 1)
    }else {
        println(Math.ceil(dis).toLong() * 2)
    }
}

private class Pos(val x: Double, val y: Double)
0