結果

問題 No.246 質問と回答
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-04 16:32:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 519 bytes
コンパイル時間 2,383 ms
コンパイル使用メモリ 76,224 KB
実行使用メモリ 58,700 KB
平均クエリ数 30.97
最終ジャッジ日時 2024-07-16 20:21:26
合計ジャッジ時間 10,457 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 197 ms
57,040 KB
testcase_01 AC 208 ms
58,348 KB
testcase_02 AC 207 ms
57,592 KB
testcase_03 AC 206 ms
58,700 KB
testcase_04 AC 198 ms
56,944 KB
testcase_05 AC 190 ms
57,376 KB
testcase_06 AC 197 ms
57,276 KB
testcase_07 AC 197 ms
57,392 KB
testcase_08 AC 192 ms
57,468 KB
testcase_09 AC 205 ms
58,248 KB
testcase_10 AC 206 ms
58,196 KB
testcase_11 AC 207 ms
58,024 KB
testcase_12 AC 201 ms
57,964 KB
testcase_13 AC 191 ms
57,116 KB
testcase_14 AC 210 ms
58,544 KB
testcase_15 AC 199 ms
57,304 KB
testcase_16 AC 208 ms
58,228 KB
testcase_17 AC 198 ms
57,336 KB
testcase_18 AC 209 ms
58,116 KB
testcase_19 AC 199 ms
57,252 KB
testcase_20 AC 194 ms
57,396 KB
testcase_21 AC 194 ms
56,992 KB
testcase_22 AC 202 ms
58,392 KB
testcase_23 AC 197 ms
57,252 KB
testcase_24 AC 203 ms
58,388 KB
testcase_25 AC 192 ms
56,712 KB
testcase_26 AC 210 ms
57,964 KB
testcase_27 AC 200 ms
57,272 KB
testcase_28 AC 198 ms
57,644 KB
testcase_29 AC 193 ms
57,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int l = 1;
    int r = (int)Math.pow(10, 9) + 1;
    int ans = 0;
    while(l < r) {
      int med = (l + r) / 2;
      System.out.println("?" + " " + med);
      System.out.flush();
      int ret = sc.nextInt();
      if(ret == 1) {
        ans = med;
        l = med + 1;
      } else {
        r = med;
      }
    }
    System.out.println("!" + " " + ans);
    System.out.flush();
  }
}
0