結果

問題 No.253 ロウソクの長さ
ユーザー くわいくわい
提出日時 2015-10-24 13:38:01
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 1,013 bytes
コンパイル時間 12,146 ms
コンパイル使用メモリ 269,644 KB
実行使用メモリ 78,304 KB
平均クエリ数 30.11
最終ジャッジ日時 2024-07-16 07:53:09
合計ジャッジ時間 41,798 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 777 ms
77,792 KB
testcase_01 AC 786 ms
77,300 KB
testcase_02 AC 768 ms
76,916 KB
testcase_03 AC 742 ms
77,396 KB
testcase_04 AC 740 ms
77,544 KB
testcase_05 AC 739 ms
77,056 KB
testcase_06 AC 760 ms
77,496 KB
testcase_07 AC 751 ms
77,808 KB
testcase_08 AC 757 ms
76,800 KB
testcase_09 AC 745 ms
76,968 KB
testcase_10 AC 753 ms
77,504 KB
testcase_11 AC 763 ms
76,912 KB
testcase_12 AC 760 ms
77,432 KB
testcase_13 AC 755 ms
78,144 KB
testcase_14 AC 761 ms
77,056 KB
testcase_15 AC 756 ms
76,760 KB
testcase_16 AC 750 ms
78,284 KB
testcase_17 AC 741 ms
76,704 KB
testcase_18 AC 786 ms
77,192 KB
testcase_19 AC 780 ms
77,248 KB
testcase_20 AC 768 ms
77,612 KB
testcase_21 WA -
testcase_22 AC 775 ms
77,464 KB
testcase_23 AC 776 ms
77,092 KB
testcase_24 AC 745 ms
77,024 KB
testcase_25 AC 783 ms
77,808 KB
testcase_26 AC 758 ms
77,672 KB
testcase_27 AC 777 ms
77,260 KB
testcase_28 AC 771 ms
77,248 KB
testcase_29 AC 747 ms
77,328 KB
testcase_30 AC 747 ms
77,668 KB
testcase_31 AC 760 ms
77,180 KB
testcase_32 AC 749 ms
77,180 KB
testcase_33 AC 771 ms
77,180 KB
testcase_34 AC 763 ms
77,224 KB
testcase_35 AC 766 ms
77,284 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 to 50).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 = 50
    val max = Math.pow(10, 9).toInt
    searchR(min, max, 1)
  }

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

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