結果

問題 No.514 宝探し3
ユーザー uwiuwi
提出日時 2017-05-06 01:56:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 1,035 bytes
コンパイル時間 4,560 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 71,936 KB
平均クエリ数 2.75
最終ジャッジ日時 2024-07-16 13:33:31
合計ジャッジ時間 8,370 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 215 ms
71,736 KB
testcase_01 AC 209 ms
71,812 KB
testcase_02 AC 213 ms
71,648 KB
testcase_03 AC 213 ms
71,692 KB
testcase_04 AC 213 ms
71,924 KB
testcase_05 AC 225 ms
71,340 KB
testcase_06 AC 194 ms
71,300 KB
testcase_07 AC 189 ms
71,448 KB
testcase_08 AC 199 ms
71,936 KB
testcase_09 AC 182 ms
71,212 KB
testcase_10 AC 201 ms
71,424 KB
testcase_11 AC 190 ms
71,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class BB {
	static Scanner in;
	static PrintWriter out;
	static String INPUT = "";
	
	static int d(int x, int y)
	{
		out.println(x + " " + y);
		out.flush();
		return ni();
	}
	
	static void solve()
	{
		int D = 1000000000;
		int d00 = d(0, 0);
		if(d00 == 0)return;
		int d01 = d(0, D);
		if(d01 == 0)return;
		// a+b=D1
		// a+c=D2
		// b+c=10^6
		int a = (int)(((long)d00+d01+D)/2-D);
		int b = (int)(((long)d00+d01+D)/2-d01);
		d(a, b);
	}
	
	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