結果

問題 No.246 質問と回答
ユーザー mura40424mura40424
提出日時 2015-08-01 15:29:32
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 456 bytes
コンパイル時間 11,093 ms
コンパイル使用メモリ 427,824 KB
実行使用メモリ 71,508 KB
平均クエリ数 100.00
最終ジャッジ日時 2024-07-16 07:19:40
合計ジャッジ時間 23,559 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 329 ms
70,672 KB
testcase_01 WA -
testcase_02 AC 327 ms
70,816 KB
testcase_03 AC 330 ms
70,848 KB
testcase_04 AC 326 ms
70,684 KB
testcase_05 WA -
testcase_06 AC 328 ms
70,656 KB
testcase_07 AC 326 ms
70,656 KB
testcase_08 AC 324 ms
70,780 KB
testcase_09 WA -
testcase_10 AC 330 ms
70,616 KB
testcase_11 WA -
testcase_12 AC 329 ms
70,652 KB
testcase_13 AC 326 ms
70,568 KB
testcase_14 AC 325 ms
70,232 KB
testcase_15 WA -
testcase_16 AC 323 ms
70,892 KB
testcase_17 AC 322 ms
71,000 KB
testcase_18 AC 330 ms
70,592 KB
testcase_19 AC 320 ms
70,524 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 321 ms
70,900 KB
testcase_24 WA -
testcase_25 AC 324 ms
70,568 KB
testcase_26 AC 330 ms
70,420 KB
testcase_27 AC 320 ms
70,516 KB
testcase_28 AC 322 ms
70,928 KB
testcase_29 AC 327 ms
70,556 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).toInt()
var count = 0
var ans = 0

fun QandA(left : Int, right : Int) {
    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, MAX)
}
0