結果

問題 No.594 壊れた宝物発見機
ユーザー uwiuwi
提出日時 2017-11-10 22:48:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 2,257 bytes
コンパイル時間 3,345 ms
コンパイル使用メモリ 81,440 KB
実行使用メモリ 72,324 KB
平均クエリ数 100.00
最終ジャッジ日時 2024-07-16 14:27:55
合計ジャッジ時間 10,670 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 288 ms
72,120 KB
testcase_01 AC 299 ms
71,716 KB
testcase_02 AC 303 ms
71,692 KB
testcase_03 AC 293 ms
71,956 KB
testcase_04 AC 287 ms
71,616 KB
testcase_05 AC 288 ms
71,792 KB
testcase_06 AC 282 ms
72,156 KB
testcase_07 AC 295 ms
72,032 KB
testcase_08 AC 299 ms
72,040 KB
testcase_09 AC 288 ms
72,168 KB
testcase_10 AC 291 ms
71,868 KB
testcase_11 AC 292 ms
71,844 KB
testcase_12 AC 298 ms
71,908 KB
testcase_13 AC 296 ms
71,660 KB
testcase_14 AC 297 ms
72,324 KB
testcase_15 AC 289 ms
72,240 KB
testcase_16 AC 292 ms
72,116 KB
testcase_17 AC 291 ms
71,788 KB
testcase_18 AC 291 ms
72,036 KB
testcase_19 AC 291 ms
71,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class D2 {
	static Scanner in;
	static PrintWriter out;
	static String INPUT = "";
	
	static long get(int x, int y, int z)
	{
		out.println("? " + x + " " + y + " " + z);
		out.flush();
		return ni();
	}
	
	static void solve()
	{
		int x = -150, y = -150, z = -150;
		
		{
			int low = -150, high = 151;
			while(high - low > 2){
				int nl = low + (high - low)/3;
				int nh = high + (low - high)/3;
				long vl = get(nl, y, z);
				long vh = get(nh, y, z);
				if(vl < vh){
					high = nh;
				}else{
					low = nl;
				}
			}
			long min = Long.MAX_VALUE;
			for(int i = Math.max(low-2, -150);i <= Math.min(high+2, 150);i++){
				long v = get(i, y, z);
				if(v < min){
					min = v;
					x = i;
				}
			}
		}
		{
			int low = -150, high = 151;
			while(high - low > 2){
				int nl = low + (high - low)/3;
				int nh = high + (low - high)/3;
				long vl = get(x, nl, z);
				long vh = get(x, nh, z);
				if(vl < vh){
					high = nh;
				}else{
					low = nl;
				}
			}
			long min = Long.MAX_VALUE;
			for(int i = Math.max(low-2, -150);i <= Math.min(high+2, 150);i++){
				long v = get(x, i, z);
				if(v < min){
					min = v;
					y = i;
				}
			}
		}
		{
			int low = -150, high = 151;
			while(high - low > 2){
				int nl = low + (high - low)/3;
				int nh = high + (low - high)/3;
				long vl = get(x, y, nl);
				long vh = get(x, y, nh);
				if(vl < vh){
					high = nh;
				}else{
					low = nl;
				}
			}
			long min = Long.MAX_VALUE;
			for(int i = Math.max(low-2, -150);i <= Math.min(high+2, 150);i++){
				long v = get(x, y, i);
				if(v < min){
					min = v;
					z = i;
				}
			}
		}
		out.println("! " + x + " " + y + " " + z);
		out.flush();
	}
	
	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