結果

問題 No.246 質問と回答
ユーザー kou6839kou6839
提出日時 2015-07-18 01:41:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 543 bytes
コンパイル時間 2,390 ms
コンパイル使用メモリ 76,940 KB
実行使用メモリ 72,096 KB
平均クエリ数 30.90
最終ジャッジ日時 2024-07-16 19:47:50
合計ジャッジ時間 9,498 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 185 ms
71,076 KB
testcase_01 AC 183 ms
70,088 KB
testcase_02 AC 183 ms
72,096 KB
testcase_03 AC 183 ms
69,724 KB
testcase_04 AC 181 ms
69,676 KB
testcase_05 AC 183 ms
69,824 KB
testcase_06 AC 179 ms
70,148 KB
testcase_07 AC 177 ms
70,188 KB
testcase_08 AC 180 ms
69,776 KB
testcase_09 AC 180 ms
69,844 KB
testcase_10 AC 184 ms
70,288 KB
testcase_11 AC 182 ms
69,440 KB
testcase_12 AC 193 ms
70,196 KB
testcase_13 AC 186 ms
69,976 KB
testcase_14 AC 185 ms
69,936 KB
testcase_15 AC 181 ms
69,824 KB
testcase_16 AC 179 ms
70,016 KB
testcase_17 AC 184 ms
69,804 KB
testcase_18 AC 196 ms
70,912 KB
testcase_19 AC 184 ms
69,976 KB
testcase_20 AC 195 ms
70,648 KB
testcase_21 AC 183 ms
70,044 KB
testcase_22 AC 194 ms
70,736 KB
testcase_23 AC 185 ms
70,320 KB
testcase_24 AC 182 ms
69,508 KB
testcase_25 AC 222 ms
70,644 KB
testcase_26 AC 211 ms
69,544 KB
testcase_27 AC 192 ms
69,932 KB
testcase_28 AC 175 ms
69,992 KB
testcase_29 AC 181 ms
69,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main {
	static int rec(int num){
		if(num==1) return 1;
		else return rec(num-1)+num;
	}
    public static void main(String[] args){
        // TODO 自動生成されたメソッド・スタブ
    	Scanner sc = new Scanner(System.in);
    	int a = 1;
    	int b = (int) 1e9;
    	while(a<b-1){
    		int c = (a+b)/2;
    		System.out.println("? "+c);
    		int t = sc.nextInt();
    		if(t==1){
    			a=c;
    		}else{
    			b=c;
    		}
    	}
    	System.out.println("! "+a);
    }
}
0