結果

問題 No.246 質問と回答
ユーザー mura40424mura40424
提出日時 2015-08-01 14:17:57
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 425 ms / 2,000 ms
コード長 456 bytes
コンパイル時間 10,313 ms
コンパイル使用メモリ 436,356 KB
実行使用メモリ 75,464 KB
平均クエリ数 100.00
最終ジャッジ日時 2025-01-03 23:49:47
合計ジャッジ時間 25,454 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 425 ms
75,252 KB
testcase_01 AC 420 ms
74,276 KB
testcase_02 AC 417 ms
74,176 KB
testcase_03 AC 413 ms
73,848 KB
testcase_04 AC 413 ms
74,444 KB
testcase_05 AC 419 ms
75,464 KB
testcase_06 AC 416 ms
74,984 KB
testcase_07 AC 420 ms
74,236 KB
testcase_08 AC 419 ms
75,348 KB
testcase_09 AC 415 ms
75,084 KB
testcase_10 AC 416 ms
74,700 KB
testcase_11 AC 403 ms
73,468 KB
testcase_12 AC 404 ms
73,956 KB
testcase_13 AC 420 ms
74,580 KB
testcase_14 AC 411 ms
73,496 KB
testcase_15 AC 420 ms
74,424 KB
testcase_16 AC 418 ms
74,420 KB
testcase_17 AC 419 ms
74,096 KB
testcase_18 AC 415 ms
75,228 KB
testcase_19 AC 422 ms
74,740 KB
testcase_20 AC 417 ms
74,352 KB
testcase_21 AC 418 ms
73,960 KB
testcase_22 AC 416 ms
74,744 KB
testcase_23 AC 417 ms
74,796 KB
testcase_24 AC 416 ms
74,440 KB
testcase_25 AC 420 ms
74,632 KB
testcase_26 AC 419 ms
74,328 KB
testcase_27 AC 418 ms
74,696 KB
testcase_28 AC 412 ms
73,520 KB
testcase_29 AC 417 ms
75,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

var MAX = Math.pow(10.0,9.0)
var count = 0
var ans = 0

fun QandA(left : Double, right : Double) {
    count++
    var x = (left + right) / 2

    if(count == 100) {
        System.out.println("! " + x.toInt())
        return
    }

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

    if(ans == 1) {
        QandA(x, right)
    }
    else {
        QandA(left, x - 1)
    }
}

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