結果

問題 No.2831 Cos Bomb Crasher
ユーザー 👑 rin204rin204
提出日時 2024-08-04 12:52:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 392 ms / 2,000 ms
コード長 1,720 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 97,480 KB
平均クエリ数 297.00
最終ジャッジ日時 2024-08-04 12:52:37
合計ジャッジ時間 25,402 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 366 ms
96,880 KB
testcase_01 AC 346 ms
97,012 KB
testcase_02 AC 363 ms
96,880 KB
testcase_03 AC 355 ms
96,788 KB
testcase_04 AC 354 ms
96,968 KB
testcase_05 AC 355 ms
97,472 KB
testcase_06 AC 351 ms
96,732 KB
testcase_07 AC 357 ms
96,948 KB
testcase_08 AC 347 ms
97,140 KB
testcase_09 AC 366 ms
96,916 KB
testcase_10 AC 367 ms
97,184 KB
testcase_11 AC 363 ms
97,072 KB
testcase_12 AC 381 ms
97,280 KB
testcase_13 AC 362 ms
97,152 KB
testcase_14 AC 349 ms
97,240 KB
testcase_15 AC 357 ms
97,040 KB
testcase_16 AC 357 ms
96,964 KB
testcase_17 AC 366 ms
96,940 KB
testcase_18 AC 361 ms
97,452 KB
testcase_19 AC 375 ms
97,092 KB
testcase_20 AC 371 ms
97,112 KB
testcase_21 AC 363 ms
96,976 KB
testcase_22 AC 392 ms
97,424 KB
testcase_23 AC 370 ms
97,112 KB
testcase_24 AC 359 ms
97,224 KB
testcase_25 AC 365 ms
96,908 KB
testcase_26 AC 360 ms
97,092 KB
testcase_27 AC 356 ms
97,296 KB
testcase_28 AC 368 ms
97,192 KB
testcase_29 AC 373 ms
97,252 KB
testcase_30 AC 371 ms
96,928 KB
testcase_31 AC 371 ms
97,024 KB
testcase_32 AC 375 ms
96,964 KB
testcase_33 AC 369 ms
97,184 KB
testcase_34 AC 364 ms
96,936 KB
testcase_35 AC 368 ms
97,212 KB
testcase_36 AC 351 ms
97,224 KB
testcase_37 AC 355 ms
97,076 KB
testcase_38 AC 359 ms
97,192 KB
testcase_39 AC 353 ms
97,144 KB
testcase_40 AC 361 ms
97,124 KB
testcase_41 AC 361 ms
97,120 KB
testcase_42 AC 365 ms
97,308 KB
testcase_43 AC 372 ms
97,012 KB
testcase_44 AC 367 ms
97,480 KB
testcase_45 AC 344 ms
97,232 KB
testcase_46 AC 343 ms
97,032 KB
testcase_47 AC 353 ms
97,348 KB
testcase_48 AC 364 ms
96,756 KB
testcase_49 AC 330 ms
96,988 KB
testcase_50 AC 350 ms
97,028 KB
testcase_51 AC 359 ms
96,876 KB
testcase_52 AC 323 ms
97,024 KB
testcase_53 AC 389 ms
96,844 KB
testcase_54 AC 361 ms
97,060 KB
testcase_55 AC 367 ms
96,704 KB
testcase_56 AC 372 ms
96,896 KB
testcase_57 AC 349 ms
96,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from pprint import pprint
import random

DEBUG = False

if DEBUG:
    n = 10**8
    x_ = random.randrange(-n, n)
    y_ = random.randrange(-n, n)
    a = (x_, y_)
    b = (-y_, x_)
    o = ((a[0] + b[0]) / 2, (a[1] + b[1]) / 2)
    rr = (a[0] - o[0]) ** 2 + (a[1] - o[1]) ** 2
    S = ""

    def print(Q, flush):
        pprint(Q)
        if Q[0] == "2":
            pprint(f"{o[0]}, {o[1]}, {rr}")
            return

        x, y = map(float, Q.split()[1:])
        assert -(10**9) <= x <= 10**9
        assert -(10**9) <= y <= 10**9
        d = (x - o[0]) ** 2 + (y - o[1]) ** 2
        pprint(f"{rr=} {d=}")

        global S
        if d == rr:
            S = "0"
        elif d > rr:
            S = "+"
        else:
            S = "-"

    def input():
        return S


def judge(Q):
    print(Q, flush=True)
    if Q[0] == "2":
        return
    return input()


if not DEBUG:
    n = int(input())

q = 74

l = 0
r = 2 * n

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

x_p = (l + r) / 2

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

x_m = (l + r) / 2

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

y_p = (l + r) / 2

l = -2 * n
r = 0
for _ in range(q):
    mid = (l + r) / 2
    res = judge(f"1 0 {mid:.9f}")
    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

judge(f"2 {x:.9f} {y:.9f} {r2:.9f}")
0