結果

問題 No.2962 Sum Bomb Bomber
ユーザー ks2mks2m
提出日時 2024-11-16 16:01:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 347 ms / 2,000 ms
コード長 1,431 bytes
コンパイル時間 4,560 ms
コンパイル使用メモリ 79,476 KB
実行使用メモリ 61,032 KB
平均クエリ数 189.62
最終ジャッジ日時 2024-11-16 16:03:22
合計ジャッジ時間 27,907 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 296 ms
59,620 KB
testcase_01 AC 347 ms
59,564 KB
testcase_02 AC 321 ms
59,764 KB
testcase_03 AC 318 ms
59,528 KB
testcase_04 AC 329 ms
59,496 KB
testcase_05 AC 320 ms
59,408 KB
testcase_06 AC 300 ms
59,844 KB
testcase_07 AC 346 ms
59,664 KB
testcase_08 AC 321 ms
59,972 KB
testcase_09 AC 307 ms
59,412 KB
testcase_10 AC 303 ms
59,492 KB
testcase_11 AC 317 ms
59,552 KB
testcase_12 AC 339 ms
59,436 KB
testcase_13 AC 316 ms
59,620 KB
testcase_14 AC 323 ms
59,588 KB
testcase_15 AC 287 ms
59,772 KB
testcase_16 AC 303 ms
60,056 KB
testcase_17 AC 310 ms
59,640 KB
testcase_18 AC 341 ms
59,544 KB
testcase_19 AC 312 ms
59,696 KB
testcase_20 AC 295 ms
60,764 KB
testcase_21 AC 282 ms
59,640 KB
testcase_22 AC 303 ms
59,156 KB
testcase_23 AC 302 ms
59,640 KB
testcase_24 AC 325 ms
60,884 KB
testcase_25 AC 298 ms
59,180 KB
testcase_26 AC 306 ms
59,724 KB
testcase_27 AC 303 ms
59,516 KB
testcase_28 AC 310 ms
58,872 KB
testcase_29 AC 339 ms
59,616 KB
testcase_30 AC 310 ms
60,132 KB
testcase_31 AC 307 ms
59,588 KB
testcase_32 AC 304 ms
59,624 KB
testcase_33 AC 306 ms
59,124 KB
testcase_34 AC 342 ms
59,476 KB
testcase_35 AC 334 ms
59,432 KB
testcase_36 AC 337 ms
59,496 KB
testcase_37 AC 344 ms
59,496 KB
testcase_38 AC 331 ms
60,864 KB
testcase_39 AC 315 ms
60,508 KB
testcase_40 AC 343 ms
60,876 KB
testcase_41 AC 305 ms
59,640 KB
testcase_42 AC 325 ms
60,000 KB
testcase_43 AC 310 ms
59,540 KB
testcase_44 AC 308 ms
59,164 KB
testcase_45 AC 302 ms
59,496 KB
testcase_46 AC 338 ms
59,420 KB
testcase_47 AC 305 ms
59,536 KB
testcase_48 AC 300 ms
59,332 KB
testcase_49 AC 324 ms
59,540 KB
testcase_50 AC 298 ms
59,920 KB
testcase_51 AC 284 ms
60,052 KB
testcase_52 AC 304 ms
59,604 KB
testcase_53 AC 299 ms
59,820 KB
testcase_54 AC 275 ms
59,436 KB
testcase_55 AC 287 ms
60,732 KB
testcase_56 AC 302 ms
59,952 KB
testcase_57 AC 330 ms
59,544 KB
testcase_58 AC 299 ms
60,984 KB
testcase_59 AC 307 ms
60,268 KB
testcase_60 AC 301 ms
61,032 KB
testcase_61 AC 314 ms
59,160 KB
testcase_62 AC 291 ms
59,880 KB
testcase_63 AC 286 ms
59,916 KB
testcase_64 AC 286 ms
59,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();

		int m = 100000000;
		int l = -m;
		int r = m;
		while (r - l > 2) {
			int m1 = (l * 2 + r) / 3;
			int m2 = (l + r * 2) / 3;
			System.out.println("1 0 " + m1);
			long v1 = sc.nextLong();
			System.out.println("1 0 " + m2);
			long v2 = sc.nextLong();
			if (v1 <= v2) {
				r = m2;
			} else {
				l = m1;
			}
		}
		System.out.println("1 0 " + l);
		long vl = sc.nextLong();
		System.out.println("1 0 " + r);
		long vr = sc.nextLong();
		System.out.println("1 0 " + (l + r) / 2);
		long vm = sc.nextLong();
		int y = (l + r) / 2;
		if (vm > vr) {
			y = r;
		} else if (vm > vl) {
			y = l;
		}

		l = -m;
		r = m;
		while (r - l > 2) {
			int m1 = (l * 2 + r) / 3;
			int m2 = (l + r * 2) / 3;
			System.out.println("1 " + m1 + " " + y);
			long v1 = sc.nextLong();
			System.out.println("1 " + m2 + " " + y);
			long v2 = sc.nextLong();
			if (v1 <= v2) {
				r = m2;
			} else {
				l = m1;
			}
		}
		System.out.println("1 " + l + " " + y);
		vl = sc.nextLong();
		System.out.println("1 " + r + " " + y);
		vr = sc.nextLong();
		System.out.println("1 " + (l + r) / 2 + " " + y);
		vm = sc.nextLong();
		int x = (l + r) / 2;
		if (vm > vr) {
			x = r;
		} else if (vm > vl) {
			x = l;
		}

		System.out.println("2 " + x + " " + y);
		sc.close();
	}
}
0