結果

問題 No.253 ロウソクの長さ
ユーザー mura40424mura40424
提出日時 2015-08-01 18:03:12
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 478 bytes
コンパイル時間 9,923 ms
コンパイル使用メモリ 433,848 KB
実行使用メモリ 74,184 KB
平均クエリ数 311.50
最終ジャッジ日時 2024-07-16 05:33:17
合計ジャッジ時間 24,358 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 294 ms
70,760 KB
testcase_01 AC 297 ms
70,784 KB
testcase_02 AC 288 ms
70,328 KB
testcase_03 AC 287 ms
70,808 KB
testcase_04 WA -
testcase_05 AC 291 ms
70,708 KB
testcase_06 AC 286 ms
70,672 KB
testcase_07 AC 281 ms
70,728 KB
testcase_08 AC 294 ms
70,444 KB
testcase_09 WA -
testcase_10 AC 303 ms
70,860 KB
testcase_11 AC 287 ms
70,356 KB
testcase_12 AC 293 ms
70,724 KB
testcase_13 AC 314 ms
70,856 KB
testcase_14 WA -
testcase_15 AC 298 ms
71,056 KB
testcase_16 AC 300 ms
71,224 KB
testcase_17 AC 299 ms
70,560 KB
testcase_18 AC 293 ms
70,088 KB
testcase_19 WA -
testcase_20 AC 289 ms
70,456 KB
testcase_21 AC 282 ms
70,784 KB
testcase_22 WA -
testcase_23 AC 299 ms
71,156 KB
testcase_24 AC 288 ms
70,800 KB
testcase_25 AC 282 ms
71,008 KB
testcase_26 RE -
testcase_27 AC 290 ms
70,624 KB
testcase_28 AC 281 ms
70,860 KB
testcase_29 AC 289 ms
70,440 KB
testcase_30 RE -
testcase_31 AC 309 ms
70,660 KB
testcase_32 AC 287 ms
70,948 KB
testcase_33 AC 294 ms
70,648 KB
testcase_34 WA -
testcase_35 AC 289 ms
71,060 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:24:10: warning: parameter 'args' is never used
fun main(args : Array<String>) {
         ^

ソースコード

diff #

var MAX = Math.pow(10.0,9.0).toInt() + 1
var count = 0

fun askCandle(left : Int, right : Int) {
    count++
    var x = (left + right) / 2

    println("? " + x.toInt())
    var ans = readLine()!!.toInt()

    if(ans == 1) {
        askCandle(x - 1, right)
    }
    else if(ans == -1){
        askCandle(left, x - 2)
    }
    else {
        var res = (x - 1) + count
        println("! " + res)
        return
    }
}

fun main(args : Array<String>) {
    askCandle(0, MAX)
}
0