結果

問題 No.513 宝探し2
ユーザー uwiuwi
提出日時 2017-05-05 22:23:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 1,011 bytes
コンパイル時間 4,062 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 71,688 KB
平均クエリ数 2.83
最終ジャッジ日時 2024-07-17 00:55:51
合計ジャッジ時間 7,455 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 176 ms
71,304 KB
testcase_01 AC 173 ms
70,712 KB
testcase_02 AC 203 ms
70,928 KB
testcase_03 AC 197 ms
71,480 KB
testcase_04 AC 185 ms
71,156 KB
testcase_05 AC 187 ms
71,688 KB
testcase_06 AC 183 ms
71,304 KB
testcase_07 AC 203 ms
71,500 KB
testcase_08 AC 203 ms
71,580 KB
testcase_09 AC 191 ms
71,168 KB
testcase_10 AC 166 ms
71,172 KB
testcase_11 AC 179 ms
71,480 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 d00 = d(0, 0);
		if(d00 == 0)return;
		int d01 = d(0, 1000000);
		if(d01 == 0)return;
		// a+b=D1
		// a+c=D2
		// b+c=10^6
		int a = (d00+d01+1000000)/2-1000000;
		int b = (d00+d01+1000000)/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