結果

問題 No.98 円を描こう
ユーザー javyjavy
提出日時 2015-11-03 14:36:08
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 287 ms / 5,000 ms
コード長 635 bytes
コンパイル時間 13,657 ms
コンパイル使用メモリ 438,556 KB
実行使用メモリ 51,672 KB
最終ジャッジ日時 2024-11-19 17:52:46
合計ジャッジ時間 16,470 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 275 ms
51,552 KB
testcase_01 AC 280 ms
51,640 KB
testcase_02 AC 276 ms
51,660 KB
testcase_03 AC 275 ms
51,612 KB
testcase_04 AC 278 ms
51,544 KB
testcase_05 AC 278 ms
51,592 KB
testcase_06 AC 287 ms
51,500 KB
testcase_07 AC 279 ms
51,496 KB
testcase_08 AC 287 ms
51,576 KB
testcase_09 AC 277 ms
51,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package Yukicoder

/**
 * Created by hichikawa on 2015/11/02.
 */
fun main(args: Array<String>) {
    fun readLineLongArray() : List<Long> {
        val str = readLine() as String
        val arrStr = str.split(" ")
        val ret = arrStr.map { it.toLong() }
        return ret
    }
    fun readLineLong() : Long {
        val str = readLine() as String
        return str.toLong()
    }
    val arrInt = readLineLongArray()
    val lenlen = arrInt[0] * arrInt[0] + arrInt[1] * arrInt[1]
    for (i in 1..(Integer.MAX_VALUE)) {
        if (lenlen < (i / 2.0) * (i / 2.0)) {
            println(i)
            break
        }
    }
}
0