結果

問題 No.2962 Sum Bomb Bomber
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-11-17 16:01:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 921 bytes
コンパイル時間 2,272 ms
コンパイル使用メモリ 199,672 KB
実行使用メモリ 25,592 KB
平均クエリ数 189.00
最終ジャッジ日時 2024-11-17 16:01:45
合計ジャッジ時間 10,663 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 75 ms
24,952 KB
testcase_04 WA -
testcase_05 AC 77 ms
25,320 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 79 ms
24,824 KB
testcase_12 AC 77 ms
25,080 KB
testcase_13 AC 74 ms
24,952 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 75 ms
24,824 KB
testcase_17 AC 76 ms
24,952 KB
testcase_18 AC 76 ms
25,208 KB
testcase_19 AC 76 ms
25,080 KB
testcase_20 AC 75 ms
24,824 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 75 ms
24,440 KB
testcase_24 AC 76 ms
25,208 KB
testcase_25 AC 70 ms
25,092 KB
testcase_26 AC 75 ms
24,952 KB
testcase_27 WA -
testcase_28 AC 76 ms
25,080 KB
testcase_29 AC 77 ms
24,824 KB
testcase_30 WA -
testcase_31 AC 65 ms
24,824 KB
testcase_32 WA -
testcase_33 AC 78 ms
25,208 KB
testcase_34 AC 82 ms
25,080 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 82 ms
25,208 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 77 ms
24,940 KB
testcase_42 AC 103 ms
24,952 KB
testcase_43 WA -
testcase_44 AC 77 ms
24,952 KB
testcase_45 AC 81 ms
25,208 KB
testcase_46 WA -
testcase_47 AC 76 ms
25,464 KB
testcase_48 WA -
testcase_49 AC 75 ms
25,208 KB
testcase_50 WA -
testcase_51 AC 65 ms
24,556 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 AC 76 ms
25,068 KB
testcase_58 AC 76 ms
25,196 KB
testcase_59 AC 76 ms
24,812 KB
testcase_60 AC 79 ms
25,068 KB
testcase_61 AC 75 ms
25,196 KB
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

void fast_io() {
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
}

long long query(int x, int y) {
	cout << "1 " << x << " " << y << endl;
	long long a;
	cin >> a;
	return a;
}

int main() {
	fast_io();
	int n;
	cin >> n;
	int xl = -1e8 + 5, xr = 1e8 - 5, yl = -1e8 + 5, yr = 1e8 - 5;
	while (xl + 2 < xr) {
		int x1 = xl + (xr - xl) / 3;
		int x2 = xr - (xr - xl) / 3;
		long long a1 = query(x1, yl);
		long long a2 = query(x2, yl);
		if (a1 < a2) {
			xr = x2;
		} else {
			xl = x1;
		}
	}
	int x = xl;
	if (query(xr, yl) < query(xl, yl)) {
		x = xr;
	}
	while (yl + 2 < yr) {
		int y1 = yl + (yr - yl) / 3;
		int y2 = yr - (yr - yl) / 3;
		long long a1 = query(x, y1);
		long long a2 = query(x, y2);
		if (a1 < a2) {
			yr = y2;
		} else {
			yl = y1;
		}
	}
	int y = yl;
	if (query(x, yr) < query(x, yl)) {
		y = yr;
	}
	cout << "2 " << x << " " << y << endl;
}
0