結果

問題 No.253 ロウソクの長さ
ユーザー uwiuwi
提出日時 2015-07-24 22:57:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 1,375 bytes
コンパイル時間 4,130 ms
コンパイル使用メモリ 88,492 KB
実行使用メモリ 71,260 KB
平均クエリ数 35.53
最終ジャッジ日時 2024-07-16 20:49:01
合計ジャッジ時間 11,173 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
70,084 KB
testcase_01 AC 144 ms
69,924 KB
testcase_02 AC 154 ms
71,076 KB
testcase_03 AC 152 ms
70,836 KB
testcase_04 AC 146 ms
69,648 KB
testcase_05 AC 142 ms
69,792 KB
testcase_06 AC 175 ms
70,536 KB
testcase_07 AC 159 ms
70,068 KB
testcase_08 AC 169 ms
70,476 KB
testcase_09 AC 149 ms
69,740 KB
testcase_10 AC 173 ms
70,988 KB
testcase_11 AC 160 ms
69,984 KB
testcase_12 AC 173 ms
71,260 KB
testcase_13 AC 153 ms
69,708 KB
testcase_14 AC 144 ms
69,620 KB
testcase_15 AC 143 ms
69,760 KB
testcase_16 AC 155 ms
69,804 KB
testcase_17 AC 142 ms
69,320 KB
testcase_18 AC 157 ms
70,056 KB
testcase_19 AC 143 ms
69,568 KB
testcase_20 AC 162 ms
70,236 KB
testcase_21 AC 147 ms
69,896 KB
testcase_22 AC 140 ms
70,132 KB
testcase_23 AC 171 ms
71,036 KB
testcase_24 AC 161 ms
69,796 KB
testcase_25 AC 165 ms
69,604 KB
testcase_26 AC 164 ms
70,200 KB
testcase_27 AC 170 ms
70,872 KB
testcase_28 AC 184 ms
70,956 KB
testcase_29 AC 183 ms
70,536 KB
testcase_30 AC 162 ms
69,572 KB
testcase_31 AC 161 ms
70,104 KB
testcase_32 AC 159 ms
69,328 KB
testcase_33 AC 171 ms
70,552 KB
testcase_34 AC 141 ms
70,376 KB
testcase_35 AC 171 ms
70,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package contest;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Scanner;

public class Q687 {
	static Scanner in;
	static PrintWriter out;
	static String INPUT = "";
	
	static void solve()
	{
		long low = 10, high = 1000000001;
		int turn = 0;
		for(long i = low;;i*=2){
			out.println("? " + i);
			out.flush();
			int res = ni();
			if(res == 0){
				low = i+turn; high = i+turn;
				out.println("! " + low);
				out.flush();
				return;
			}else if(res == 1){
				low = i+1+turn;
			}else{
				high = i+turn;
				break;
			}
			turn++;
		}
		turn++;
		while(true){
			long h = (high-turn)+(low-turn)>>>1;
			out.println("? " + h);
			out.flush();
			int res = ni();
			if(res == 0){
				low = h+turn; high = h+turn;
				out.println("! " + low);
				out.flush();
				return;
			}else if(res == 1){
				low = h+1+turn;
			}else{
				high = h+turn;
			}
			turn++;
		}
	}
	
	public static void main(String[] args) throws Exception
	{
		in = INPUT.isEmpty() ? new Scanner(System.in) : new Scanner(INPUT);
		out = new PrintWriter(System.out);
		
		solve();
		out.flush();
	}
	
	static int ni() { return Integer.parseInt(in.next()); }
	static long nl() { return Long.parseLong(in.next()); }
	static double nd() { return Double.parseDouble(in.next()); }
	static void tr(Object... o) { if(INPUT.length() != 0)System.out.println(Arrays.deepToString(o)); }
}
0