結果

問題 No.246 質問と回答
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-16 21:37:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 520 bytes
コンパイル時間 3,041 ms
コンパイル使用メモリ 76,092 KB
実行使用メモリ 73,032 KB
平均クエリ数 30.30
最終ジャッジ日時 2024-07-16 10:28:36
合計ジャッジ時間 10,376 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 184 ms
57,892 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 185 ms
58,296 KB
testcase_04 AC 185 ms
57,424 KB
testcase_05 WA -
testcase_06 AC 178 ms
58,792 KB
testcase_07 AC 182 ms
57,492 KB
testcase_08 AC 192 ms
58,136 KB
testcase_09 WA -
testcase_10 AC 183 ms
58,160 KB
testcase_11 WA -
testcase_12 AC 180 ms
57,112 KB
testcase_13 AC 185 ms
56,992 KB
testcase_14 AC 181 ms
56,832 KB
testcase_15 WA -
testcase_16 AC 189 ms
57,440 KB
testcase_17 AC 181 ms
57,728 KB
testcase_18 AC 182 ms
58,016 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 181 ms
56,812 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 180 ms
57,084 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise90{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int head = 1;
    int tail = 1000000000;
    int center = 0;
    while(tail - head > 1){
      center = (tail - head) / 2 + head;
      System.out.println("? " + center);
      System.out.flush();

      int answer = sc.nextInt();



      if(answer == 0){
        tail = center - 1;
      }else{
        head = center;
      }
    }
    System.out.println("! " + (center - 1));
  }
}
0