結果

問題 No.246 質問と回答
ユーザー mura40424mura40424
提出日時 2015-08-01 14:17:57
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 385 ms / 2,000 ms
コード長 456 bytes
コンパイル時間 11,655 ms
コンパイル使用メモリ 424,660 KB
実行使用メモリ 71,224 KB
平均クエリ数 100.00
最終ジャッジ日時 2024-11-13 22:29:54
合計ジャッジ時間 24,773 ms
ジャッジサーバーID
(参考情報)
judge1 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 371 ms
70,968 KB
testcase_01 AC 371 ms
71,224 KB
testcase_02 AC 380 ms
71,132 KB
testcase_03 AC 384 ms
71,144 KB
testcase_04 AC 384 ms
70,336 KB
testcase_05 AC 377 ms
70,948 KB
testcase_06 AC 378 ms
70,860 KB
testcase_07 AC 379 ms
70,736 KB
testcase_08 AC 377 ms
71,148 KB
testcase_09 AC 374 ms
70,792 KB
testcase_10 AC 372 ms
70,952 KB
testcase_11 AC 378 ms
71,000 KB
testcase_12 AC 376 ms
71,060 KB
testcase_13 AC 378 ms
70,648 KB
testcase_14 AC 378 ms
71,188 KB
testcase_15 AC 376 ms
70,840 KB
testcase_16 AC 368 ms
70,560 KB
testcase_17 AC 374 ms
70,816 KB
testcase_18 AC 367 ms
70,700 KB
testcase_19 AC 373 ms
71,076 KB
testcase_20 AC 371 ms
70,404 KB
testcase_21 AC 376 ms
71,100 KB
testcase_22 AC 378 ms
70,944 KB
testcase_23 AC 375 ms
70,760 KB
testcase_24 AC 376 ms
70,852 KB
testcase_25 AC 385 ms
71,076 KB
testcase_26 AC 373 ms
70,480 KB
testcase_27 AC 369 ms
70,944 KB
testcase_28 AC 365 ms
71,104 KB
testcase_29 AC 368 ms
71,104 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:25:10: warning: parameter 'args' is never used
fun main(args : Array<String>) {
         ^

ソースコード

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