結果

問題 No.1187 皇帝ペンギン
ユーザー yudedakoyudedako
提出日時 2020-08-27 09:42:40
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 334 ms / 1,000 ms
コード長 810 bytes
コンパイル時間 12,907 ms
コンパイル使用メモリ 427,716 KB
実行使用メモリ 73,900 KB
平均クエリ数 16.56
最終ジャッジ日時 2024-07-17 06:48:26
合計ジャッジ時間 33,956 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 334 ms
73,288 KB
testcase_01 AC 316 ms
73,160 KB
testcase_02 AC 318 ms
73,112 KB
testcase_03 AC 323 ms
73,176 KB
testcase_04 AC 317 ms
73,360 KB
testcase_05 AC 321 ms
73,356 KB
testcase_06 AC 329 ms
73,316 KB
testcase_07 AC 324 ms
73,060 KB
testcase_08 AC 319 ms
73,416 KB
testcase_09 AC 322 ms
73,632 KB
testcase_10 AC 323 ms
73,088 KB
testcase_11 AC 321 ms
72,924 KB
testcase_12 AC 318 ms
73,776 KB
testcase_13 AC 326 ms
73,064 KB
testcase_14 AC 322 ms
73,568 KB
testcase_15 AC 322 ms
73,432 KB
testcase_16 AC 320 ms
73,096 KB
testcase_17 AC 317 ms
73,216 KB
testcase_18 AC 318 ms
73,260 KB
testcase_19 AC 320 ms
73,524 KB
testcase_20 AC 324 ms
73,216 KB
testcase_21 AC 326 ms
73,120 KB
testcase_22 AC 322 ms
72,496 KB
testcase_23 AC 326 ms
73,644 KB
testcase_24 AC 322 ms
73,328 KB
testcase_25 AC 329 ms
73,500 KB
testcase_26 AC 319 ms
73,328 KB
testcase_27 AC 322 ms
72,992 KB
testcase_28 AC 316 ms
73,372 KB
testcase_29 AC 315 ms
73,572 KB
testcase_30 AC 324 ms
73,116 KB
testcase_31 AC 318 ms
73,404 KB
testcase_32 AC 319 ms
73,260 KB
testcase_33 AC 324 ms
73,648 KB
testcase_34 AC 317 ms
73,212 KB
testcase_35 AC 319 ms
73,172 KB
testcase_36 AC 318 ms
73,304 KB
testcase_37 AC 317 ms
73,400 KB
testcase_38 AC 323 ms
73,512 KB
testcase_39 AC 323 ms
73,212 KB
testcase_40 AC 323 ms
73,080 KB
testcase_41 AC 317 ms
73,028 KB
testcase_42 AC 319 ms
73,416 KB
testcase_43 AC 320 ms
73,296 KB
testcase_44 AC 325 ms
73,900 KB
testcase_45 AC 322 ms
73,520 KB
testcase_46 AC 316 ms
73,272 KB
testcase_47 AC 321 ms
73,132 KB
testcase_48 AC 331 ms
73,176 KB
testcase_49 AC 323 ms
73,488 KB
testcase_50 AC 324 ms
73,512 KB
testcase_51 AC 328 ms
73,248 KB
testcase_52 AC 328 ms
73,488 KB
testcase_53 AC 324 ms
73,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.lang.IllegalArgumentException


fun ask(value: Int): Response {
    println("? $value")
    return Response(readLine()!!)
}
sealed class Response{
    companion object {
        operator fun invoke(word: String): Response {
            return when(word.trim()) {
                "out" -> Out
                "safe" -> Safe
                else -> throw IllegalArgumentException()
            }
        }
    }
}
object Out : Response()
object Safe : Response()
fun main() {
    var min = 0
    var max = 1001
    while (min < max) {
        val mid = (min + max) shr 1
        when(ask(mid)) {
            Out -> when(ask(mid + 1)) {
                Out -> max = mid
                Safe -> min = mid + 1
            }
            Safe -> min = mid + 1
        }
    }
    println("! ${max - 1}")
}
0