結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 342 ms
66,316 KB
testcase_01 AC 355 ms
66,552 KB
testcase_02 AC 344 ms
66,604 KB
testcase_03 AC 340 ms
66,320 KB
testcase_04 AC 346 ms
66,228 KB
testcase_05 AC 344 ms
66,436 KB
testcase_06 AC 350 ms
66,136 KB
testcase_07 AC 345 ms
66,476 KB
testcase_08 AC 350 ms
66,840 KB
testcase_09 AC 346 ms
66,348 KB
testcase_10 AC 345 ms
66,228 KB
testcase_11 AC 342 ms
66,576 KB
testcase_12 AC 345 ms
66,172 KB
testcase_13 AC 344 ms
66,556 KB
testcase_14 AC 357 ms
66,044 KB
testcase_15 AC 345 ms
66,188 KB
testcase_16 AC 342 ms
66,304 KB
testcase_17 AC 363 ms
66,752 KB
testcase_18 AC 350 ms
66,420 KB
testcase_19 AC 349 ms
66,824 KB
testcase_20 AC 346 ms
66,604 KB
testcase_21 AC 347 ms
66,460 KB
testcase_22 AC 346 ms
66,440 KB
testcase_23 AC 344 ms
66,708 KB
testcase_24 AC 347 ms
66,488 KB
testcase_25 AC 346 ms
66,300 KB
testcase_26 AC 338 ms
66,268 KB
testcase_27 AC 341 ms
66,172 KB
testcase_28 AC 351 ms
66,144 KB
testcase_29 AC 343 ms
66,068 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:27:10: warning: parameter 'args' is never used
fun main(args : Array<String>) {
         ^

ソースコード

diff #

package No246

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

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

    if(conut == 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