結果

問題 No.246 質問と回答
ユーザー ともきともき
提出日時 2015-07-18 05:44:44
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 858 ms / 2,000 ms
コード長 991 bytes
コンパイル時間 12,400 ms
コンパイル使用メモリ 255,272 KB
実行使用メモリ 79,488 KB
平均クエリ数 82.00
最終ジャッジ日時 2024-07-16 19:50:27
合計ジャッジ時間 39,174 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 850 ms
79,124 KB
testcase_01 AC 815 ms
78,740 KB
testcase_02 AC 831 ms
79,372 KB
testcase_03 AC 828 ms
79,200 KB
testcase_04 AC 826 ms
79,488 KB
testcase_05 AC 813 ms
78,872 KB
testcase_06 AC 828 ms
79,036 KB
testcase_07 AC 825 ms
79,436 KB
testcase_08 AC 821 ms
79,112 KB
testcase_09 AC 831 ms
79,052 KB
testcase_10 AC 823 ms
78,976 KB
testcase_11 AC 824 ms
79,152 KB
testcase_12 AC 829 ms
79,260 KB
testcase_13 AC 845 ms
78,876 KB
testcase_14 AC 821 ms
79,120 KB
testcase_15 AC 819 ms
78,668 KB
testcase_16 AC 835 ms
78,872 KB
testcase_17 AC 825 ms
79,252 KB
testcase_18 AC 820 ms
78,908 KB
testcase_19 AC 812 ms
79,152 KB
testcase_20 AC 822 ms
78,668 KB
testcase_21 AC 812 ms
78,600 KB
testcase_22 AC 822 ms
78,448 KB
testcase_23 AC 836 ms
78,708 KB
testcase_24 AC 858 ms
78,432 KB
testcase_25 AC 830 ms
78,808 KB
testcase_26 AC 826 ms
78,684 KB
testcase_27 AC 831 ms
78,804 KB
testcase_28 AC 828 ms
78,808 KB
testcase_29 AC 811 ms
79,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine
import scala.collection.mutable.PriorityQueue
import scala.annotation.tailrec

// PriorityQueue[Long]()(scala.math.Ordering.Long.reverse)
package net.pushl {
  package number {
    // Prime  (Prime.scala)
    // Number (Number.scala)
  }
  package string {
    // RollingHash (RollingHash.scala)
  }
  object EnRich {
    implicit class AString(val self : String) extends AnyVal {
      def splitToIntArray = self.split(" ").map(_.toInt)
    }
  }
}

object Main {
  def main(args : Array[String]) : Unit = {
    var lower = 0           // lower < x
    // var upper = 100  // x <= upper
    var upper = 1000000010  // x <= upper

    for(i <- 0 to 80){
      val mid = (lower+upper)/2
      println(s"? $mid")
      Console.flush()
      val mid_is_greater_than_or_equal_to_x = readLine() == "1"
      if(mid_is_greater_than_or_equal_to_x){
        lower = mid
      }else{
        upper = mid
      }
    }
    println(s"! $lower")
    Console.flush()
  }
}
0