結果

問題 No.246 質問と回答
ユーザー 37zigen37zigen
提出日時 2016-03-22 18:07:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 570 bytes
コンパイル時間 2,314 ms
コンパイル使用メモリ 77,064 KB
実行使用メモリ 71,284 KB
平均クエリ数 31.53
最終ジャッジ日時 2024-07-16 20:02:43
合計ジャッジ時間 9,488 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 182 ms
69,892 KB
testcase_01 AC 184 ms
69,880 KB
testcase_02 AC 198 ms
70,396 KB
testcase_03 AC 193 ms
70,276 KB
testcase_04 AC 186 ms
69,976 KB
testcase_05 AC 194 ms
70,780 KB
testcase_06 AC 190 ms
70,504 KB
testcase_07 AC 206 ms
70,892 KB
testcase_08 AC 185 ms
69,572 KB
testcase_09 AC 185 ms
70,064 KB
testcase_10 AC 184 ms
69,564 KB
testcase_11 AC 187 ms
70,060 KB
testcase_12 AC 180 ms
69,576 KB
testcase_13 AC 184 ms
69,968 KB
testcase_14 AC 185 ms
69,768 KB
testcase_15 AC 194 ms
71,284 KB
testcase_16 AC 184 ms
70,228 KB
testcase_17 AC 183 ms
70,056 KB
testcase_18 AC 182 ms
69,744 KB
testcase_19 AC 182 ms
69,492 KB
testcase_20 AC 198 ms
70,772 KB
testcase_21 AC 185 ms
70,208 KB
testcase_22 AC 198 ms
70,360 KB
testcase_23 AC 194 ms
70,480 KB
testcase_24 AC 178 ms
69,764 KB
testcase_25 AC 193 ms
70,524 KB
testcase_26 AC 196 ms
70,872 KB
testcase_27 AC 179 ms
69,584 KB
testcase_28 AC 181 ms
69,484 KB
testcase_29 AC 198 ms
70,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder246;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		int upper=(int)Math.pow(10, 9);
		int low=0;
		
		while(upper!=low){
			int mid=(int)(upper+low)/2;
			System.out.println("? "+mid);
			int a=sc.nextInt();
			if(a==1){
				low=mid;
				if(upper==low||upper==low+1){
					System.out.println("! "+low);
					sc.close();
					return;
				}
			}else{
				upper=mid;
				if(upper==low){
					System.out.println("! "+upper);
					sc.close();
					return;
				}
			}
		}
		
	}
}
0