結果

問題 No.2831 Cos Bomb Crasher
ユーザー ねしんねしん
提出日時 2024-07-12 13:32:36
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,362 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 71,280 KB
平均クエリ数 51.86
最終ジャッジ日時 2024-07-15 08:12:44
合計ジャッジ時間 14,676 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
70,428 KB
testcase_01 AC 176 ms
70,716 KB
testcase_02 AC 189 ms
69,504 KB
testcase_03 AC 179 ms
71,144 KB
testcase_04 AC 178 ms
70,508 KB
testcase_05 AC 175 ms
71,056 KB
testcase_06 AC 172 ms
69,908 KB
testcase_07 AC 182 ms
70,228 KB
testcase_08 AC 176 ms
70,244 KB
testcase_09 AC 175 ms
69,644 KB
testcase_10 AC 173 ms
69,924 KB
testcase_11 AC 173 ms
69,832 KB
testcase_12 AC 175 ms
70,696 KB
testcase_13 AC 173 ms
69,796 KB
testcase_14 AC 179 ms
71,008 KB
testcase_15 AC 176 ms
70,308 KB
testcase_16 AC 177 ms
70,460 KB
testcase_17 AC 174 ms
69,264 KB
testcase_18 AC 178 ms
71,220 KB
testcase_19 AC 173 ms
70,124 KB
testcase_20 AC 172 ms
70,588 KB
testcase_21 AC 180 ms
69,916 KB
testcase_22 AC 175 ms
70,120 KB
testcase_23 AC 173 ms
69,920 KB
testcase_24 AC 178 ms
68,984 KB
testcase_25 AC 176 ms
69,408 KB
testcase_26 AC 174 ms
69,860 KB
testcase_27 AC 173 ms
69,108 KB
testcase_28 AC 174 ms
70,340 KB
testcase_29 AC 178 ms
70,912 KB
testcase_30 AC 175 ms
71,212 KB
testcase_31 AC 177 ms
70,412 KB
testcase_32 AC 181 ms
70,684 KB
testcase_33 AC 180 ms
69,956 KB
testcase_34 AC 179 ms
71,280 KB
testcase_35 AC 175 ms
69,840 KB
testcase_36 AC 176 ms
69,424 KB
testcase_37 AC 187 ms
69,156 KB
testcase_38 AC 173 ms
69,644 KB
testcase_39 AC 193 ms
70,268 KB
testcase_40 AC 176 ms
69,840 KB
testcase_41 AC 176 ms
68,808 KB
testcase_42 AC 173 ms
70,852 KB
testcase_43 AC 178 ms
70,112 KB
testcase_44 AC 175 ms
69,256 KB
testcase_45 AC 141 ms
70,152 KB
testcase_46 AC 140 ms
69,648 KB
testcase_47 AC 170 ms
70,588 KB
testcase_48 AC 177 ms
70,028 KB
testcase_49 AC 164 ms
69,308 KB
testcase_50 WA -
testcase_51 AC 175 ms
69,540 KB
testcase_52 AC 138 ms
70,804 KB
testcase_53 AC 172 ms
69,360 KB
testcase_54 AC 175 ms
69,840 KB
testcase_55 AC 174 ms
70,848 KB
testcase_56 AC 173 ms
70,120 KB
testcase_57 AC 176 ms
70,296 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,ansx/2,ansy/2,(ansx**2+ansy**2)/4)
0