結果

問題 No.246 質問と回答
ユーザー crazybbb3crazybbb3
提出日時 2017-01-15 02:05:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 2,389 bytes
コンパイル時間 3,363 ms
コンパイル使用メモリ 74,976 KB
実行使用メモリ 67,336 KB
平均クエリ数 30.90
最終ジャッジ日時 2023-09-23 20:21:27
合計ジャッジ時間 7,911 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
66,448 KB
testcase_01 AC 105 ms
66,520 KB
testcase_02 AC 106 ms
67,144 KB
testcase_03 AC 113 ms
67,264 KB
testcase_04 AC 111 ms
66,960 KB
testcase_05 AC 110 ms
67,016 KB
testcase_06 AC 109 ms
66,888 KB
testcase_07 AC 109 ms
67,132 KB
testcase_08 AC 108 ms
66,804 KB
testcase_09 AC 106 ms
66,660 KB
testcase_10 AC 108 ms
66,988 KB
testcase_11 AC 109 ms
67,336 KB
testcase_12 AC 107 ms
67,156 KB
testcase_13 AC 105 ms
67,244 KB
testcase_14 AC 111 ms
66,780 KB
testcase_15 AC 108 ms
66,696 KB
testcase_16 AC 106 ms
66,788 KB
testcase_17 AC 105 ms
66,736 KB
testcase_18 AC 107 ms
67,256 KB
testcase_19 AC 105 ms
67,180 KB
testcase_20 AC 105 ms
66,988 KB
testcase_21 AC 105 ms
66,600 KB
testcase_22 AC 109 ms
66,700 KB
testcase_23 AC 105 ms
67,168 KB
testcase_24 AC 106 ms
67,000 KB
testcase_25 AC 106 ms
67,140 KB
testcase_26 AC 106 ms
66,668 KB
testcase_27 AC 105 ms
67,088 KB
testcase_28 AC 104 ms
66,652 KB
testcase_29 AC 108 ms
66,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.*;

public class Main {

    void solve() throws IOException {
        int high = (int) 1e9 + 1;
        int low = 1;
        while (high - low > 1) {
            int mid = (high + low) / 2;
            out.println("? " + mid);
            out.flush();
            int n = ni();
            if (n == 0) {
                high = mid;
            } else {
                low = mid;
            }
        }
        out.println("! " + low);
    }

    String ns() throws IOException {
        while (!tok.hasMoreTokens()) {
            tok = new StringTokenizer(in.readLine(), " ");
        }
        return tok.nextToken();
    }

    int ni() throws IOException {
        return Integer.parseInt(ns());
    }

    long nl() throws IOException {
        return Long.parseLong(ns());
    }

    double nd() throws IOException {
        return Double.parseDouble(ns());
    }

    String[] nsa(int n) throws IOException {
        String[] res = new String[n];
        for (int i = 0; i < n; i++) {
            res[i] = ns();
        }
        return res;
    }

    int[] nia(int n) throws IOException {
        int[] res = new int[n];
        for (int i = 0; i < n; i++) {
            res[i] = ni();
        }
        return res;
    }

    long[] nla(int n) throws IOException {
        long[] res = new long[n];
        for (int i = 0; i < n; i++) {
            res[i] = nl();
        }
        return res;
    }

    class INA {
        int[][] a;

        INA(int n, int m) throws IOException {
            this(n, m, -1);
        }

        INA(int n, int m, int t) throws IOException {
            a = new int[m][n];

            for (int i = 0; i < n; i++) {
                for (int j = 0; j < m; j++) {
                    a[j][i] = ni() + t;
                }
            }
        }

        int[] get(int i) {
            return a[i - 1];
        }
    }

    static BufferedReader in;
    static PrintWriter out;
    static StringTokenizer tok;

    public static void main(String[] args) throws IOException {
        in = new BufferedReader(new InputStreamReader(System.in));
        out = new PrintWriter(System.out);
        tok = new StringTokenizer("");
        Main main = new Main();
        main.solve();
        out.close();
    }
}
0