結果

問題 No.2962 Sum Bomb Bomber
ユーザー ゼットゼット
提出日時 2024-11-16 16:57:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 894 bytes
コンパイル時間 460 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 70,504 KB
平均クエリ数 188.85
最終ジャッジ日時 2024-11-16 16:58:43
合計ジャッジ時間 12,685 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
70,504 KB
testcase_01 AC 136 ms
70,504 KB
testcase_02 AC 134 ms
69,992 KB
testcase_03 AC 135 ms
70,376 KB
testcase_04 AC 136 ms
69,992 KB
testcase_05 AC 136 ms
69,992 KB
testcase_06 AC 124 ms
69,736 KB
testcase_07 AC 136 ms
69,480 KB
testcase_08 AC 138 ms
70,376 KB
testcase_09 AC 135 ms
69,736 KB
testcase_10 AC 135 ms
69,480 KB
testcase_11 AC 134 ms
69,992 KB
testcase_12 AC 135 ms
70,504 KB
testcase_13 AC 127 ms
70,120 KB
testcase_14 AC 137 ms
70,248 KB
testcase_15 AC 121 ms
69,992 KB
testcase_16 AC 131 ms
70,120 KB
testcase_17 AC 135 ms
70,376 KB
testcase_18 AC 132 ms
70,248 KB
testcase_19 AC 138 ms
70,248 KB
testcase_20 AC 131 ms
69,992 KB
testcase_21 AC 124 ms
70,504 KB
testcase_22 AC 128 ms
69,736 KB
testcase_23 AC 157 ms
70,120 KB
testcase_24 AC 136 ms
70,248 KB
testcase_25 AC 128 ms
70,248 KB
testcase_26 AC 137 ms
70,120 KB
testcase_27 AC 146 ms
70,240 KB
testcase_28 AC 136 ms
69,992 KB
testcase_29 AC 131 ms
70,120 KB
testcase_30 AC 133 ms
70,112 KB
testcase_31 AC 122 ms
69,992 KB
testcase_32 AC 135 ms
70,376 KB
testcase_33 AC 137 ms
69,736 KB
testcase_34 AC 145 ms
70,120 KB
testcase_35 AC 137 ms
69,992 KB
testcase_36 AC 142 ms
69,736 KB
testcase_37 AC 144 ms
70,248 KB
testcase_38 AC 138 ms
69,992 KB
testcase_39 AC 138 ms
70,408 KB
testcase_40 AC 137 ms
70,248 KB
testcase_41 AC 136 ms
69,992 KB
testcase_42 AC 142 ms
69,968 KB
testcase_43 AC 123 ms
70,504 KB
testcase_44 AC 135 ms
69,352 KB
testcase_45 AC 136 ms
70,152 KB
testcase_46 AC 156 ms
70,248 KB
testcase_47 AC 140 ms
70,248 KB
testcase_48 AC 138 ms
70,248 KB
testcase_49 AC 138 ms
70,376 KB
testcase_50 AC 138 ms
69,736 KB
testcase_51 AC 121 ms
69,600 KB
testcase_52 AC 135 ms
70,240 KB
testcase_53 AC 122 ms
69,728 KB
testcase_54 AC 124 ms
69,984 KB
testcase_55 AC 122 ms
69,856 KB
testcase_56 AC 123 ms
70,496 KB
testcase_57 AC 134 ms
69,728 KB
testcase_58 AC 139 ms
69,856 KB
testcase_59 AC 135 ms
70,088 KB
testcase_60 AC 136 ms
69,600 KB
testcase_61 AC 134 ms
70,112 KB
testcase_62 AC 132 ms
69,984 KB
testcase_63 AC 128 ms
69,600 KB
testcase_64 AC 130 ms
69,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
l=-10**8
r=10**8
while True:
  m1=(2*l+r)//3
  m2=(l+2*r)//3
  print(1,m1,0,flush=True)
  d1=int(input())
  print(1,m2,0,flush=True)
  d2=int(input())
  if d1<=d2:
    r=m2
  else:
    l=m1
  if abs(r-l)==0:
    break
  if abs(r-l)<=2:
    w=10**19
    pos=-1
    for y in range(l,r+1):
      print(1,y,0,flush=True)
      d1=int(input())
      if d1<w:
        w=d1
        pos=y
    l=pos
    r=pos
    break
    
a=l
l=-10**8
r=10**8
while True:
  m1=(2*l+r)//3
  m2=(l+2*r)//3
  print(1,0,m1,flush=True)
  d1=int(input())
  print(1,0,m2,flush=True)
  d2=int(input())
  if d1<=d2:
    r=m2
  else:
    l=m1
  if l==r:
    break
  if abs(r-l)==0:
    break
  if abs(r-l)<=2:
    w=10**19
    pos=-1
    for y in range(l,r+1):
      print(1,0,y,flush=True)
      d1=int(input())
      if d1<w:
        w=d1
        pos=y
    l=pos
    r=pos
    break
b=l
print(2,a,b,flush=True)
0