結果

問題 No.2831 Cos Bomb Crasher
ユーザー 👑 rin204rin204
提出日時 2024-08-04 12:29:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 935 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,688 KB
平均クエリ数 281.00
最終ジャッジ日時 2024-08-04 12:29:50
合計ジャッジ時間 22,189 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 299 ms
76,256 KB
testcase_01 AC 274 ms
76,384 KB
testcase_02 AC 291 ms
76,512 KB
testcase_03 AC 311 ms
76,680 KB
testcase_04 AC 292 ms
76,512 KB
testcase_05 AC 310 ms
76,000 KB
testcase_06 AC 278 ms
76,128 KB
testcase_07 AC 313 ms
76,512 KB
testcase_08 WA -
testcase_09 AC 297 ms
76,688 KB
testcase_10 WA -
testcase_11 AC 302 ms
75,992 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 296 ms
76,256 KB
testcase_16 AC 323 ms
76,512 KB
testcase_17 WA -
testcase_18 AC 290 ms
76,512 KB
testcase_19 WA -
testcase_20 AC 322 ms
76,384 KB
testcase_21 AC 304 ms
76,512 KB
testcase_22 AC 322 ms
76,512 KB
testcase_23 WA -
testcase_24 AC 291 ms
75,992 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 294 ms
76,256 KB
testcase_28 WA -
testcase_29 AC 281 ms
76,512 KB
testcase_30 AC 309 ms
76,256 KB
testcase_31 AC 302 ms
76,384 KB
testcase_32 AC 285 ms
76,256 KB
testcase_33 AC 291 ms
76,128 KB
testcase_34 AC 298 ms
76,032 KB
testcase_35 AC 293 ms
76,640 KB
testcase_36 WA -
testcase_37 AC 319 ms
76,384 KB
testcase_38 AC 299 ms
76,256 KB
testcase_39 AC 300 ms
76,256 KB
testcase_40 AC 295 ms
76,376 KB
testcase_41 AC 290 ms
76,384 KB
testcase_42 AC 299 ms
76,512 KB
testcase_43 AC 270 ms
76,128 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 254 ms
76,120 KB
testcase_47 AC 294 ms
76,256 KB
testcase_48 AC 326 ms
76,072 KB
testcase_49 AC 278 ms
76,384 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 267 ms
76,336 KB
testcase_53 AC 287 ms
76,256 KB
testcase_54 AC 290 ms
76,256 KB
testcase_55 AC 319 ms
76,256 KB
testcase_56 AC 284 ms
76,128 KB
testcase_57 AC 282 ms
76,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
q = 70

l = 0
r = n
for _ in range(q):
    mid = (l + r) / 2
    print(1, f"{mid:.9f}", 0, flush=True)
    res = input()
    if res[0] == "+":
        r = mid
    else:
        l = mid

x_p = (l + r) / 2

l = -(n)
r = 0
for _ in range(q):
    mid = (l + r) / 2
    print(1, f"{mid:.9f}", 0, flush=True)
    res = input()
    if res[0] == "+":
        l = mid
    else:
        r = mid

x_m = (l + r) / 2

l = 0
r = n
for _ in range(q):
    mid = (l + r) / 2
    print(1, 0, f"{mid:.9f}", flush=True)
    res = input()
    if res[0] == "+":
        r = mid
    else:
        l = mid

y_p = (l + r) / 2

l = -(n)
r = 0
for _ in range(q):
    mid = (l + r) / 2
    print(1, 0, f"{mid:.9f}", flush=True)
    res = input()
    if res[0] == "+":
        l = mid
    else:
        r = mid

y_m = (l + r) / 2

x = (x_p + x_m) / 2
y = (y_p + y_m) / 2
r2 = x**2 + y**2

print(2, f"{x:.9f}", f"{y:.9f}", f"{r2:.9f}", flush=True)
0