結果

問題 No.2962 Sum Bomb Bomber
ユーザー ねしんねしん
提出日時 2024-10-22 23:37:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 482 bytes
コンパイル時間 712 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 71,484 KB
平均クエリ数 79.89
最終ジャッジ日時 2024-10-29 13:36:50
合計ジャッジ時間 12,223 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
69,848 KB
testcase_01 AC 131 ms
70,100 KB
testcase_02 AC 129 ms
70,880 KB
testcase_03 AC 108 ms
68,904 KB
testcase_04 AC 127 ms
69,792 KB
testcase_05 AC 111 ms
68,928 KB
testcase_06 AC 113 ms
69,764 KB
testcase_07 AC 129 ms
68,996 KB
testcase_08 AC 126 ms
69,964 KB
testcase_09 AC 126 ms
69,808 KB
testcase_10 AC 127 ms
70,928 KB
testcase_11 AC 103 ms
69,392 KB
testcase_12 AC 107 ms
69,972 KB
testcase_13 AC 102 ms
69,852 KB
testcase_14 AC 128 ms
71,144 KB
testcase_15 AC 112 ms
71,484 KB
testcase_16 AC 102 ms
69,220 KB
testcase_17 AC 112 ms
69,632 KB
testcase_18 AC 109 ms
70,284 KB
testcase_19 AC 109 ms
69,160 KB
testcase_20 AC 102 ms
70,688 KB
testcase_21 AC 113 ms
69,900 KB
testcase_22 AC 119 ms
70,612 KB
testcase_23 AC 111 ms
69,352 KB
testcase_24 AC 114 ms
69,304 KB
testcase_25 AC 102 ms
69,112 KB
testcase_26 AC 112 ms
70,152 KB
testcase_27 AC 127 ms
69,756 KB
testcase_28 AC 111 ms
69,708 KB
testcase_29 AC 103 ms
70,604 KB
testcase_30 AC 122 ms
70,072 KB
testcase_31 AC 102 ms
69,172 KB
testcase_32 AC 124 ms
69,744 KB
testcase_33 AC 109 ms
69,168 KB
testcase_34 AC 118 ms
69,148 KB
testcase_35 AC 127 ms
70,832 KB
testcase_36 AC 125 ms
70,400 KB
testcase_37 AC 103 ms
69,924 KB
testcase_38 AC 127 ms
70,184 KB
testcase_39 AC 128 ms
69,552 KB
testcase_40 AC 128 ms
69,892 KB
testcase_41 AC 114 ms
69,504 KB
testcase_42 AC 105 ms
69,884 KB
testcase_43 AC 111 ms
71,428 KB
testcase_44 AC 116 ms
69,632 KB
testcase_45 AC 109 ms
69,016 KB
testcase_46 AC 127 ms
69,900 KB
testcase_47 AC 116 ms
69,348 KB
testcase_48 AC 131 ms
70,724 KB
testcase_49 AC 113 ms
70,280 KB
testcase_50 AC 126 ms
70,264 KB
testcase_51 AC 99 ms
68,628 KB
testcase_52 AC 125 ms
70,180 KB
testcase_53 AC 112 ms
69,944 KB
testcase_54 AC 110 ms
69,952 KB
testcase_55 AC 114 ms
69,692 KB
testcase_56 AC 112 ms
70,756 KB
testcase_57 AC 113 ms
69,400 KB
testcase_58 AC 112 ms
70,788 KB
testcase_59 AC 114 ms
69,352 KB
testcase_60 AC 120 ms
69,724 KB
testcase_61 AC 115 ms
69,664 KB
testcase_62 AC 126 ms
69,240 KB
testcase_63 AC 129 ms
70,708 KB
testcase_64 AC 130 ms
70,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
ok=10**9+1
ng=-10**9-1
ansx=0
while abs(ok-ng)>1:
	m=(ok+ng)//2
	print(1,m,0,flush=True)
	d1=int(input())
	print(1,m+1,0,flush=True)
	d2=int(input())
	if d1==d2:
		ok=m
		break
	elif d1>d2:
		ng=m
	else:
		ok=m
ansx=ok
ok=10**9+1
ng=-10**9-1
ansy=0
while abs(ok-ng)>1:
	m=(ok+ng)//2
	print(1,0,m,flush=True)
	d1=int(input())
	print(1,0,m+1,flush=True)
	d2=int(input())
	if d1==d2:
		ok=m
		break
	elif d1>d2:
		ng=m
	else:
		ok=m
ansy=ok
print(2,ansx,ansy,flush=True)
0