結果

問題 No.2831 Cos Bomb Crasher
ユーザー ねしんねしん
提出日時 2024-07-14 12:16:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 1,425 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 71,336 KB
平均クエリ数 52.86
最終ジャッジ日時 2024-07-15 08:13:29
合計ジャッジ時間 13,524 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 166 ms
69,768 KB
testcase_01 AC 160 ms
70,392 KB
testcase_02 AC 177 ms
69,676 KB
testcase_03 AC 168 ms
70,132 KB
testcase_04 AC 165 ms
69,912 KB
testcase_05 AC 169 ms
71,108 KB
testcase_06 AC 165 ms
70,004 KB
testcase_07 AC 173 ms
71,044 KB
testcase_08 AC 172 ms
70,980 KB
testcase_09 AC 170 ms
70,544 KB
testcase_10 AC 167 ms
70,032 KB
testcase_11 AC 160 ms
69,764 KB
testcase_12 AC 166 ms
69,840 KB
testcase_13 AC 165 ms
70,660 KB
testcase_14 AC 164 ms
70,736 KB
testcase_15 AC 171 ms
70,084 KB
testcase_16 AC 166 ms
70,128 KB
testcase_17 AC 162 ms
69,568 KB
testcase_18 AC 167 ms
70,432 KB
testcase_19 AC 162 ms
69,472 KB
testcase_20 AC 164 ms
69,176 KB
testcase_21 AC 172 ms
69,796 KB
testcase_22 AC 175 ms
69,452 KB
testcase_23 AC 166 ms
69,764 KB
testcase_24 AC 170 ms
70,352 KB
testcase_25 AC 166 ms
70,116 KB
testcase_26 AC 162 ms
70,696 KB
testcase_27 AC 161 ms
69,976 KB
testcase_28 AC 159 ms
69,900 KB
testcase_29 AC 165 ms
69,388 KB
testcase_30 AC 164 ms
69,900 KB
testcase_31 AC 166 ms
69,524 KB
testcase_32 AC 171 ms
70,160 KB
testcase_33 AC 167 ms
69,560 KB
testcase_34 AC 166 ms
70,124 KB
testcase_35 AC 168 ms
68,912 KB
testcase_36 AC 169 ms
70,292 KB
testcase_37 AC 179 ms
71,184 KB
testcase_38 AC 161 ms
71,336 KB
testcase_39 AC 167 ms
71,212 KB
testcase_40 AC 169 ms
70,660 KB
testcase_41 AC 167 ms
70,720 KB
testcase_42 AC 164 ms
70,144 KB
testcase_43 AC 166 ms
69,680 KB
testcase_44 AC 164 ms
69,820 KB
testcase_45 AC 131 ms
69,560 KB
testcase_46 AC 132 ms
69,468 KB
testcase_47 AC 168 ms
70,220 KB
testcase_48 AC 179 ms
69,832 KB
testcase_49 AC 165 ms
70,712 KB
testcase_50 AC 153 ms
69,988 KB
testcase_51 AC 168 ms
70,672 KB
testcase_52 AC 128 ms
70,292 KB
testcase_53 AC 164 ms
69,900 KB
testcase_54 AC 165 ms
70,652 KB
testcase_55 AC 162 ms
70,428 KB
testcase_56 AC 163 ms
71,064 KB
testcase_57 AC 164 ms
70,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
print("1","0.5","0")
xp,_,_=list(map(str,input().split()))
print("1","-0.5","0")
xm,_,_=list(map(str,input().split()))
ansx=0
if xp=="+" and xm=="+":
	ansx=0
elif xp=="-":
  ok=0
  ng=2*N+1
  while abs(ok-ng)>1:
    m=(ok+ng)//2
    print("1",m,0)
    k,_,_=list(map(str,input().split()))
    if k=="?" or k=="0":
      ok=m
      ng=m+1
      break
    if k=="-":
      ok=m
    else:
      ng=m
  ansx=ok
else:
  ng=-2*N-1
  ok=0
  while abs(ok-ng)>1:
    m=(ok+ng)//2
    print("1",m,0)
    k,_,_=list(map(str,input().split()))
    if k=="?" or k=="0":
      ok=m
      ng=m-1
      break
    if k=="-":
      ok=m
    else:
      ng=m
  ansx=ok

print("1","0","0.5")
yp,_,_=list(map(str,input().split()))
print("1","0","-0.5")
ym,_,_=list(map(str,input().split()))
ansy=0
if yp=="+" and ym=="+":
	ansy=0
elif yp=="-":
  ok=0
  ng=2*N+1
  while abs(ok-ng)>1:
    m=(ok+ng)//2
    print("1",0,m)
    k,_,_=list(map(str,input().split()))
    if k=="?" or k=="0":
      ok=m
      ng=m+1
      break
    if k=="-":
      ok=m
    else:
      ng=m
  ansy=ok
else:
  ng=-2*N-1
  ok=0
  while abs(ok-ng)>1:
    m=(ok+ng)//2
    print("1",0,m)
    k,_,_=list(map(str,input().split()))
    if k=="?" or k=="0":
      ok=m
      ng=m-1
      break
    if k=="-":
      ok=m
    else:
      ng=m
  ansy=ok    

print(2,'{:.9f}'.format(ansx/2),'{:.9f}'.format(ansy/2),'{:.9f}'.format((ansx**2+ansy**2)/4))
print(1,0,0)
0