結果

問題 No.2831 Cos Bomb Crasher
ユーザー ねしんねしん
提出日時 2024-07-12 14:09:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 1,504 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 72,328 KB
平均クエリ数 93.47
最終ジャッジ日時 2024-07-15 08:12:56
合計ジャッジ時間 14,132 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 195 ms
70,284 KB
testcase_01 AC 194 ms
71,628 KB
testcase_02 AC 188 ms
70,772 KB
testcase_03 AC 189 ms
71,188 KB
testcase_04 AC 187 ms
71,184 KB
testcase_05 AC 189 ms
70,368 KB
testcase_06 AC 188 ms
71,152 KB
testcase_07 AC 194 ms
71,292 KB
testcase_08 AC 192 ms
70,912 KB
testcase_09 AC 187 ms
70,552 KB
testcase_10 AC 192 ms
70,504 KB
testcase_11 AC 198 ms
71,372 KB
testcase_12 AC 187 ms
70,612 KB
testcase_13 AC 183 ms
70,684 KB
testcase_14 AC 187 ms
70,436 KB
testcase_15 AC 187 ms
70,648 KB
testcase_16 AC 195 ms
70,456 KB
testcase_17 AC 195 ms
70,484 KB
testcase_18 AC 189 ms
71,204 KB
testcase_19 AC 183 ms
71,528 KB
testcase_20 AC 182 ms
70,872 KB
testcase_21 AC 184 ms
71,452 KB
testcase_22 AC 185 ms
71,052 KB
testcase_23 AC 184 ms
70,080 KB
testcase_24 AC 188 ms
69,968 KB
testcase_25 AC 184 ms
70,620 KB
testcase_26 AC 185 ms
70,584 KB
testcase_27 AC 206 ms
70,308 KB
testcase_28 AC 186 ms
70,988 KB
testcase_29 AC 181 ms
70,264 KB
testcase_30 AC 194 ms
71,244 KB
testcase_31 AC 184 ms
70,676 KB
testcase_32 AC 187 ms
70,384 KB
testcase_33 AC 184 ms
70,612 KB
testcase_34 AC 187 ms
70,044 KB
testcase_35 AC 191 ms
71,848 KB
testcase_36 AC 193 ms
70,996 KB
testcase_37 AC 189 ms
70,796 KB
testcase_38 AC 185 ms
70,916 KB
testcase_39 AC 189 ms
70,396 KB
testcase_40 AC 186 ms
71,152 KB
testcase_41 AC 185 ms
70,132 KB
testcase_42 AC 184 ms
70,480 KB
testcase_43 AC 189 ms
70,628 KB
testcase_44 AC 194 ms
70,688 KB
testcase_45 AC 151 ms
70,592 KB
testcase_46 AC 136 ms
69,764 KB
testcase_47 AC 193 ms
70,176 KB
testcase_48 AC 187 ms
72,328 KB
testcase_49 AC 174 ms
69,812 KB
testcase_50 AC 162 ms
69,852 KB
testcase_51 AC 186 ms
70,976 KB
testcase_52 AC 137 ms
71,196 KB
testcase_53 AC 189 ms
71,380 KB
testcase_54 AC 188 ms
72,280 KB
testcase_55 AC 187 ms
71,332 KB
testcase_56 AC 183 ms
69,572 KB
testcase_57 AC 202 ms
71,624 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)>10**(-6):
    m=(ok+ng)/2
    print("1",'{:.9f}'.format(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)>10**(-6):
    m=(ok+ng)/2
    print("1",'{:.9f}'.format(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)>10**(-6):
    m=(ok+ng)/2
    print("1",0,'{:.9f}'.format(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)>10**(-6):
    m=(ok+ng)/2
    print("1",0,'{:.9f}'.format(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))
0