結果

問題 No.2962 Sum Bomb Bomber
ユーザー hato336hato336
提出日時 2024-11-16 15:46:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 277 ms / 2,000 ms
コード長 795 bytes
コンパイル時間 610 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 105,832 KB
平均クエリ数 141.00
最終ジャッジ日時 2024-11-16 15:46:28
合計ジャッジ時間 19,114 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 214 ms
105,192 KB
testcase_01 AC 230 ms
105,320 KB
testcase_02 AC 226 ms
105,064 KB
testcase_03 AC 235 ms
105,192 KB
testcase_04 AC 250 ms
105,320 KB
testcase_05 AC 245 ms
105,216 KB
testcase_06 AC 223 ms
105,064 KB
testcase_07 AC 236 ms
105,576 KB
testcase_08 AC 227 ms
105,704 KB
testcase_09 AC 248 ms
105,448 KB
testcase_10 AC 243 ms
105,832 KB
testcase_11 AC 236 ms
105,448 KB
testcase_12 AC 229 ms
105,320 KB
testcase_13 AC 221 ms
105,192 KB
testcase_14 AC 238 ms
105,320 KB
testcase_15 AC 212 ms
105,192 KB
testcase_16 AC 222 ms
105,192 KB
testcase_17 AC 226 ms
104,936 KB
testcase_18 AC 252 ms
105,072 KB
testcase_19 AC 223 ms
105,320 KB
testcase_20 AC 225 ms
105,320 KB
testcase_21 AC 220 ms
105,448 KB
testcase_22 AC 219 ms
105,192 KB
testcase_23 AC 249 ms
105,320 KB
testcase_24 AC 230 ms
105,576 KB
testcase_25 AC 212 ms
105,192 KB
testcase_26 AC 224 ms
105,320 KB
testcase_27 AC 234 ms
105,320 KB
testcase_28 AC 251 ms
105,064 KB
testcase_29 AC 236 ms
105,320 KB
testcase_30 AC 224 ms
105,320 KB
testcase_31 AC 215 ms
105,192 KB
testcase_32 AC 249 ms
105,192 KB
testcase_33 AC 236 ms
105,144 KB
testcase_34 AC 230 ms
105,704 KB
testcase_35 AC 224 ms
105,192 KB
testcase_36 AC 238 ms
105,320 KB
testcase_37 AC 277 ms
105,320 KB
testcase_38 AC 249 ms
105,192 KB
testcase_39 AC 238 ms
105,448 KB
testcase_40 AC 263 ms
105,448 KB
testcase_41 AC 247 ms
105,192 KB
testcase_42 AC 255 ms
105,576 KB
testcase_43 AC 231 ms
105,192 KB
testcase_44 AC 247 ms
105,448 KB
testcase_45 AC 235 ms
105,320 KB
testcase_46 AC 249 ms
105,072 KB
testcase_47 AC 249 ms
105,576 KB
testcase_48 AC 248 ms
105,320 KB
testcase_49 AC 249 ms
105,704 KB
testcase_50 AC 248 ms
105,192 KB
testcase_51 AC 211 ms
105,184 KB
testcase_52 AC 232 ms
105,696 KB
testcase_53 AC 228 ms
105,184 KB
testcase_54 AC 228 ms
104,928 KB
testcase_55 AC 233 ms
105,568 KB
testcase_56 AC 216 ms
105,312 KB
testcase_57 AC 239 ms
105,440 KB
testcase_58 AC 231 ms
104,928 KB
testcase_59 AC 243 ms
105,056 KB
testcase_60 AC 232 ms
105,440 KB
testcase_61 AC 231 ms
104,928 KB
testcase_62 AC 232 ms
105,440 KB
testcase_63 AC 221 ms
105,184 KB
testcase_64 AC 242 ms
105,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
input = sys.stdin.readline
#n = int(input())
#alist = list(map(int,input().split()))
#alist = []

n = int(input())
l,r = -2*10**8,2*10**8
p = [(100,100),(102,102)]
def calc(x,y):
    print(1,x,y,flush=True)
    z = int(input())
    #z = sum(abs(p[i][0] - x) + abs(p[i][1] - y) for i in range(len(p)))
    return z
for _ in range(35):
    mid = (l+r)//2
    a,b = calc(0,mid),calc(0,mid+1)
    if a <= b:
        r = mid
    else:
        l = mid
ans1 = r
l,r = -2*10**8,2*10**8
for _ in range(35):
    mid = (l+r)//2
    a,b = calc(mid,0),calc(mid+1,0)
    if a <= b:
        r = mid
    else:
        l = mid
ans2 = r
print(2,ans2,ans1)
0