結果

問題 No.246 質問と回答
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-16 21:50:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 231 ms / 2,000 ms
コード長 553 bytes
コンパイル時間 3,925 ms
コンパイル使用メモリ 76,140 KB
実行使用メモリ 71,272 KB
平均クエリ数 30.90
最終ジャッジ日時 2024-07-16 20:04:47
合計ジャッジ時間 12,035 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 208 ms
69,780 KB
testcase_01 AC 222 ms
71,272 KB
testcase_02 AC 208 ms
70,180 KB
testcase_03 AC 219 ms
70,920 KB
testcase_04 AC 223 ms
70,844 KB
testcase_05 AC 218 ms
70,788 KB
testcase_06 AC 221 ms
70,572 KB
testcase_07 AC 231 ms
70,456 KB
testcase_08 AC 202 ms
69,800 KB
testcase_09 AC 217 ms
70,780 KB
testcase_10 AC 229 ms
70,576 KB
testcase_11 AC 211 ms
70,108 KB
testcase_12 AC 207 ms
69,756 KB
testcase_13 AC 211 ms
69,576 KB
testcase_14 AC 219 ms
70,732 KB
testcase_15 AC 207 ms
71,160 KB
testcase_16 AC 218 ms
70,376 KB
testcase_17 AC 204 ms
70,340 KB
testcase_18 AC 204 ms
69,464 KB
testcase_19 AC 225 ms
70,244 KB
testcase_20 AC 203 ms
69,956 KB
testcase_21 AC 218 ms
70,552 KB
testcase_22 AC 224 ms
70,280 KB
testcase_23 AC 224 ms
70,508 KB
testcase_24 AC 200 ms
70,184 KB
testcase_25 AC 202 ms
69,884 KB
testcase_26 AC 204 ms
70,136 KB
testcase_27 AC 203 ms
70,192 KB
testcase_28 AC 202 ms
69,472 KB
testcase_29 AC 220 ms
70,144 KB
権限があれば一括ダウンロードができます

ソースコード

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(true){
      center = (tail - head) / 2 + head;
      if(tail - head < 2){
        break;
      }
      System.out.println("? " + center);
      System.out.flush();

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