結果

問題 No.253 ロウソクの長さ
ユーザー くわいくわい
提出日時 2015-10-24 13:36:08
言語 Scala(Beta)
(3.4.0)
結果
RE  
実行時間 -
コード長 1,032 bytes
コンパイル時間 8,541 ms
コンパイル使用メモリ 258,368 KB
実行使用メモリ 78,108 KB
平均クエリ数 36.94
最終ジャッジ日時 2024-07-16 07:53:50
合計ジャッジ時間 37,898 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 737 ms
77,576 KB
testcase_01 AC 760 ms
77,092 KB
testcase_02 AC 754 ms
77,496 KB
testcase_03 AC 732 ms
77,292 KB
testcase_04 AC 737 ms
76,952 KB
testcase_05 AC 749 ms
77,608 KB
testcase_06 AC 744 ms
77,052 KB
testcase_07 AC 750 ms
76,652 KB
testcase_08 AC 730 ms
76,872 KB
testcase_09 AC 747 ms
77,216 KB
testcase_10 AC 745 ms
77,176 KB
testcase_11 AC 754 ms
77,440 KB
testcase_12 AC 744 ms
77,564 KB
testcase_13 AC 743 ms
76,960 KB
testcase_14 AC 744 ms
76,980 KB
testcase_15 AC 746 ms
77,276 KB
testcase_16 AC 738 ms
77,808 KB
testcase_17 RE -
testcase_18 AC 748 ms
77,232 KB
testcase_19 AC 738 ms
77,120 KB
testcase_20 AC 761 ms
77,364 KB
testcase_21 AC 753 ms
77,292 KB
testcase_22 AC 751 ms
77,384 KB
testcase_23 AC 747 ms
77,316 KB
testcase_24 AC 754 ms
78,108 KB
testcase_25 AC 736 ms
77,256 KB
testcase_26 AC 737 ms
77,632 KB
testcase_27 AC 745 ms
77,504 KB
testcase_28 AC 733 ms
77,576 KB
testcase_29 AC 748 ms
77,488 KB
testcase_30 AC 755 ms
77,680 KB
testcase_31 AC 750 ms
77,328 KB
testcase_32 AC 741 ms
77,456 KB
testcase_33 AC 742 ms
76,484 KB
testcase_34 AC 737 ms
77,140 KB
testcase_35 AC 736 ms
76,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.annotation.tailrec
import scala.io.StdIn

object Problem253 {

  def question(len: Int): Int = {
    println("? " + len)
    StdIn.readInt()
  }

  def answer(len: Int): Unit = {
    println("! " + len)
  }

  def waitBurnout(): Int = (1 until 100).find(x => question(0) == 0).get

  def search(): Int = {
    @tailrec
    def searchR(min: Int, max: Int, burned: Int): Int = {
      val mid = (min + max) / 2

      question(mid) match {
        case 1 => searchR(mid - 1, max - 1, burned + 1)
        case 0 => mid + burned
        case -1 => searchR(min - 1, mid - 1, burned + 1)
      }
    }

    val min = 100
    val max = Math.pow(10, 9).toInt
    searchR(min, max, 1)
  }

  def proc(): Int = {
    if (question(101) != -1) {
      // 101以上は二分探索
      search()
    } else {
      // 0以下の処理が面倒なので長さが100以下の場合は燃え尽きるまで待つ
      waitBurnout()
    }
  }

  def main(args: Array[String]): Unit = {
    val result = proc()
    answer(result)
  }
}
0