結果

問題 No.253 ロウソクの長さ
ユーザー nCk_cvnCk_cv
提出日時 2015-08-01 15:31:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 862 bytes
コンパイル時間 2,475 ms
コンパイル使用メモリ 79,560 KB
実行使用メモリ 58,704 KB
平均クエリ数 26.92
最終ジャッジ日時 2024-07-16 21:04:20
合計ジャッジ時間 11,077 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 188 ms
58,160 KB
testcase_01 AC 161 ms
58,224 KB
testcase_02 AC 185 ms
58,564 KB
testcase_03 AC 175 ms
58,320 KB
testcase_04 AC 158 ms
58,196 KB
testcase_05 AC 170 ms
57,312 KB
testcase_06 AC 171 ms
58,356 KB
testcase_07 AC 183 ms
58,232 KB
testcase_08 AC 192 ms
58,288 KB
testcase_09 AC 170 ms
58,460 KB
testcase_10 AC 186 ms
58,204 KB
testcase_11 AC 182 ms
58,320 KB
testcase_12 AC 181 ms
58,704 KB
testcase_13 AC 172 ms
57,364 KB
testcase_14 AC 161 ms
58,012 KB
testcase_15 AC 206 ms
58,452 KB
testcase_16 AC 172 ms
58,592 KB
testcase_17 AC 185 ms
58,592 KB
testcase_18 AC 187 ms
57,584 KB
testcase_19 AC 155 ms
58,072 KB
testcase_20 AC 187 ms
58,152 KB
testcase_21 AC 170 ms
57,732 KB
testcase_22 AC 156 ms
57,320 KB
testcase_23 AC 171 ms
58,272 KB
testcase_24 AC 172 ms
58,448 KB
testcase_25 AC 173 ms
58,408 KB
testcase_26 AC 186 ms
58,176 KB
testcase_27 AC 172 ms
57,908 KB
testcase_28 AC 171 ms
57,408 KB
testcase_29 AC 173 ms
58,196 KB
testcase_30 AC 190 ms
58,288 KB
testcase_31 AC 177 ms
58,052 KB
testcase_32 AC 171 ms
57,196 KB
testcase_33 AC 172 ms
57,968 KB
testcase_34 AC 174 ms
58,144 KB
testcase_35 AC 173 ms
58,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int s = 0;
		int e = 64;
		int count = 0;
		boolean al = false;
		while(s <= e) {
			System.out.println("? " + (s + e)/2);
			count++;
			int in = sc.nextInt();
			if(in == -1){
				e = (s + e)/2-1;
				s--;
			}
			if(in == 1) {
				s = (s + e)/2;
				e--;
			}
			if(in == 0) {
				al = true;
				System.out.println("! " + ((s + e)/2 + count-1));
				break;
			}
		}
		
		
		if(!al) {
			s = 0;
			e = 1000000001;
			while(true) {
				System.out.println("? " + (s + e)/2);
				count++;
				int in = sc.nextInt();
				if(in == -1){
					e = (s + e)/2-1;
					s--;
				}
				if(in == 1) {
					s = (s + e)/2;
					e--;
				}
				if(in == 0) {
					al = true;
					System.out.println("! " + ((s + e)/2 + count-1));
					break;
				}
			}
		}
	}
}
0