結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 311 ms
76,656 KB
testcase_01 AC 307 ms
76,412 KB
testcase_02 AC 313 ms
77,336 KB
testcase_03 AC 298 ms
77,420 KB
testcase_04 AC 294 ms
77,436 KB
testcase_05 AC 298 ms
77,768 KB
testcase_06 AC 304 ms
78,076 KB
testcase_07 AC 306 ms
77,972 KB
testcase_08 WA -
testcase_09 AC 311 ms
77,188 KB
testcase_10 WA -
testcase_11 AC 314 ms
77,364 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 312 ms
78,400 KB
testcase_16 AC 307 ms
77,528 KB
testcase_17 WA -
testcase_18 AC 317 ms
77,920 KB
testcase_19 WA -
testcase_20 AC 317 ms
78,624 KB
testcase_21 AC 304 ms
78,036 KB
testcase_22 AC 300 ms
76,664 KB
testcase_23 WA -
testcase_24 AC 321 ms
77,016 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 330 ms
78,392 KB
testcase_28 WA -
testcase_29 AC 324 ms
77,732 KB
testcase_30 AC 301 ms
77,276 KB
testcase_31 AC 312 ms
76,452 KB
testcase_32 AC 321 ms
78,236 KB
testcase_33 AC 300 ms
77,904 KB
testcase_34 AC 309 ms
77,912 KB
testcase_35 AC 324 ms
77,460 KB
testcase_36 WA -
testcase_37 AC 322 ms
76,924 KB
testcase_38 AC 309 ms
78,460 KB
testcase_39 AC 344 ms
77,452 KB
testcase_40 AC 306 ms
78,072 KB
testcase_41 AC 315 ms
76,776 KB
testcase_42 AC 335 ms
77,284 KB
testcase_43 AC 308 ms
77,396 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 273 ms
77,120 KB
testcase_47 AC 315 ms
77,528 KB
testcase_48 AC 348 ms
77,372 KB
testcase_49 AC 274 ms
77,132 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 275 ms
77,984 KB
testcase_53 AC 309 ms
76,772 KB
testcase_54 AC 315 ms
76,656 KB
testcase_55 AC 310 ms
78,152 KB
testcase_56 AC 310 ms
78,156 KB
testcase_57 AC 293 ms
77,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
q = 74

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