結果

問題 No.2831 Cos Bomb Crasher
ユーザー ねしんねしん
提出日時 2024-07-14 11:45:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 1,412 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 71,272 KB
平均クエリ数 51.86
最終ジャッジ日時 2024-07-15 08:13:33
合計ジャッジ時間 13,530 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 183 ms
69,824 KB
testcase_01 AC 176 ms
70,412 KB
testcase_02 AC 192 ms
70,552 KB
testcase_03 AC 178 ms
70,984 KB
testcase_04 AC 177 ms
69,576 KB
testcase_05 AC 175 ms
70,480 KB
testcase_06 AC 172 ms
70,456 KB
testcase_07 AC 179 ms
70,116 KB
testcase_08 AC 174 ms
69,472 KB
testcase_09 AC 177 ms
69,164 KB
testcase_10 AC 175 ms
70,184 KB
testcase_11 AC 175 ms
70,020 KB
testcase_12 AC 175 ms
70,364 KB
testcase_13 AC 172 ms
70,872 KB
testcase_14 AC 176 ms
69,596 KB
testcase_15 AC 177 ms
70,868 KB
testcase_16 AC 182 ms
70,504 KB
testcase_17 AC 173 ms
68,744 KB
testcase_18 AC 179 ms
70,100 KB
testcase_19 AC 172 ms
70,464 KB
testcase_20 AC 174 ms
69,704 KB
testcase_21 AC 177 ms
69,744 KB
testcase_22 AC 172 ms
70,372 KB
testcase_23 AC 171 ms
69,488 KB
testcase_24 AC 181 ms
70,560 KB
testcase_25 AC 178 ms
70,076 KB
testcase_26 AC 172 ms
70,752 KB
testcase_27 AC 172 ms
70,228 KB
testcase_28 AC 173 ms
70,428 KB
testcase_29 AC 176 ms
69,880 KB
testcase_30 AC 172 ms
68,804 KB
testcase_31 AC 174 ms
69,988 KB
testcase_32 AC 176 ms
70,320 KB
testcase_33 AC 179 ms
70,712 KB
testcase_34 AC 175 ms
69,712 KB
testcase_35 AC 173 ms
70,348 KB
testcase_36 AC 179 ms
70,772 KB
testcase_37 AC 193 ms
69,980 KB
testcase_38 AC 178 ms
70,388 KB
testcase_39 AC 178 ms
69,964 KB
testcase_40 AC 182 ms
69,544 KB
testcase_41 AC 180 ms
70,824 KB
testcase_42 AC 176 ms
69,100 KB
testcase_43 AC 182 ms
70,964 KB
testcase_44 AC 176 ms
71,272 KB
testcase_45 AC 146 ms
70,188 KB
testcase_46 AC 142 ms
69,356 KB
testcase_47 AC 172 ms
70,396 KB
testcase_48 AC 182 ms
71,000 KB
testcase_49 AC 166 ms
68,972 KB
testcase_50 AC 155 ms
70,256 KB
testcase_51 AC 179 ms
70,376 KB
testcase_52 AC 138 ms
68,368 KB
testcase_53 AC 171 ms
69,936 KB
testcase_54 AC 175 ms
70,384 KB
testcase_55 AC 172 ms
71,148 KB
testcase_56 AC 176 ms
69,636 KB
testcase_57 AC 175 ms
70,328 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))
0