結果

問題 No.246 質問と回答
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-02 22:08:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 577 bytes
コンパイル時間 2,175 ms
コンパイル使用メモリ 76,264 KB
実行使用メモリ 70,992 KB
平均クエリ数 30.90
最終ジャッジ日時 2024-07-16 20:07:27
合計ジャッジ時間 10,346 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 212 ms
70,972 KB
testcase_01 AC 197 ms
69,732 KB
testcase_02 AC 199 ms
69,976 KB
testcase_03 AC 205 ms
69,744 KB
testcase_04 AC 199 ms
69,768 KB
testcase_05 AC 210 ms
70,828 KB
testcase_06 AC 209 ms
70,704 KB
testcase_07 AC 201 ms
70,252 KB
testcase_08 AC 202 ms
70,340 KB
testcase_09 AC 214 ms
70,476 KB
testcase_10 AC 201 ms
70,296 KB
testcase_11 AC 201 ms
69,832 KB
testcase_12 AC 203 ms
69,788 KB
testcase_13 AC 199 ms
69,628 KB
testcase_14 AC 203 ms
70,136 KB
testcase_15 AC 203 ms
70,116 KB
testcase_16 AC 214 ms
70,924 KB
testcase_17 AC 211 ms
70,376 KB
testcase_18 AC 211 ms
70,572 KB
testcase_19 AC 210 ms
69,936 KB
testcase_20 AC 197 ms
69,936 KB
testcase_21 AC 199 ms
69,996 KB
testcase_22 AC 199 ms
70,072 KB
testcase_23 AC 213 ms
70,672 KB
testcase_24 AC 211 ms
70,712 KB
testcase_25 AC 211 ms
70,756 KB
testcase_26 AC 214 ms
70,992 KB
testcase_27 AC 212 ms
70,856 KB
testcase_28 AC 213 ms
70,684 KB
testcase_29 AC 199 ms
70,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int min=1;
        int max=1000000000;
        while(true){
            int mid=max-(max-min)/2;
            System.out.println("? "+mid);
            System.out.flush();
            int x = sc.nextInt();
            if(x==1){
                min=mid;
            }else{
                max=mid-1;
            }
            if(max==min){
                System.out.println("! "+max);
                break;
            }
        }
    }
}
0