結果

問題 No.2962 Sum Bomb Bomber
ユーザー hiro1729hiro1729
提出日時 2024-11-17 17:35:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 76,384 KB
平均クエリ数 234.00
最終ジャッジ日時 2024-11-17 17:35:46
合計ジャッジ時間 11,180 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
75,368 KB
testcase_01 AC 128 ms
75,624 KB
testcase_02 AC 123 ms
74,984 KB
testcase_03 AC 124 ms
75,624 KB
testcase_04 AC 123 ms
75,624 KB
testcase_05 AC 148 ms
75,624 KB
testcase_06 AC 115 ms
75,560 KB
testcase_07 AC 124 ms
75,624 KB
testcase_08 AC 121 ms
75,880 KB
testcase_09 AC 123 ms
75,624 KB
testcase_10 AC 124 ms
75,368 KB
testcase_11 AC 122 ms
76,136 KB
testcase_12 AC 123 ms
75,624 KB
testcase_13 AC 140 ms
75,880 KB
testcase_14 AC 126 ms
75,752 KB
testcase_15 AC 111 ms
75,496 KB
testcase_16 AC 120 ms
75,624 KB
testcase_17 AC 121 ms
75,368 KB
testcase_18 AC 123 ms
75,880 KB
testcase_19 AC 122 ms
75,112 KB
testcase_20 AC 121 ms
76,040 KB
testcase_21 AC 132 ms
75,880 KB
testcase_22 AC 118 ms
75,872 KB
testcase_23 AC 121 ms
75,880 KB
testcase_24 AC 121 ms
75,496 KB
testcase_25 AC 113 ms
75,880 KB
testcase_26 AC 122 ms
75,112 KB
testcase_27 AC 123 ms
75,624 KB
testcase_28 AC 124 ms
75,624 KB
testcase_29 AC 137 ms
74,856 KB
testcase_30 AC 120 ms
74,856 KB
testcase_31 AC 114 ms
75,368 KB
testcase_32 AC 119 ms
75,368 KB
testcase_33 AC 121 ms
75,624 KB
testcase_34 AC 129 ms
75,752 KB
testcase_35 AC 124 ms
75,880 KB
testcase_36 AC 123 ms
75,880 KB
testcase_37 AC 126 ms
75,752 KB
testcase_38 AC 125 ms
75,880 KB
testcase_39 AC 126 ms
76,136 KB
testcase_40 AC 124 ms
75,752 KB
testcase_41 AC 122 ms
75,368 KB
testcase_42 AC 128 ms
75,496 KB
testcase_43 AC 110 ms
76,136 KB
testcase_44 AC 147 ms
75,624 KB
testcase_45 AC 124 ms
76,136 KB
testcase_46 AC 125 ms
75,880 KB
testcase_47 AC 128 ms
75,368 KB
testcase_48 AC 122 ms
75,880 KB
testcase_49 AC 128 ms
75,624 KB
testcase_50 AC 126 ms
76,136 KB
testcase_51 AC 111 ms
75,872 KB
testcase_52 AC 140 ms
75,872 KB
testcase_53 AC 109 ms
74,856 KB
testcase_54 AC 109 ms
76,384 KB
testcase_55 AC 110 ms
75,488 KB
testcase_56 AC 111 ms
76,088 KB
testcase_57 AC 125 ms
75,872 KB
testcase_58 AC 130 ms
76,024 KB
testcase_59 AC 123 ms
75,872 KB
testcase_60 AC 149 ms
75,104 KB
testcase_61 AC 124 ms
75,616 KB
testcase_62 AC 125 ms
75,488 KB
testcase_63 AC 123 ms
75,360 KB
testcase_64 AC 123 ms
75,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
lx, rx = -10 ** 9, 10 ** 9
while lx + 2 < rx:
	m1 = lx + (rx - lx) // 3
	m2 = rx - (rx - lx) // 3
	print(1, m1, 0, flush = True)
	c1 = int(input())
	print(1, m2, 0, flush = True)
	c2 = int(input())
	if c1 < c2:
		rx = m2
	else:
		lx = m1
ly, ry = -10 ** 9, 10 ** 9
while ly + 2 < ry:
	m1 = ly + (ry - ly) // 3
	m2 = ry - (ry - ly) // 3
	print(1, 0, m1, flush = True)
	c1 = int(input())
	print(1, 0, m2, flush = True)
	c2 = int(input())
	if c1 < c2:
		ry = m2
	else:
		ly = m1
ax, ay = 0, 0
m = 10 ** 18
for i in range(lx - 2, lx + 3):
	for j in range(ly - 2, ly + 3):
		if abs(i) <= 10 ** 9 and abs(j) <= 10 ** 9:
			print(1, i, j, flush = True)
			c = int(input())
			if c < m:
				m = c
				ax, ay = i, j
print(2, ax, ay, flush = True)
0