結果

問題 No.2602 Real Collider
ユーザー pitPpitP
提出日時 2024-01-12 23:12:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,906 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-09-27 23:54:35
合計ジャッジ時間 32,151 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 37 ms
53,632 KB
testcase_04 AC 35 ms
52,096 KB
testcase_05 AC 35 ms
52,352 KB
testcase_06 AC 36 ms
52,096 KB
testcase_07 AC 36 ms
52,096 KB
testcase_08 AC 36 ms
52,352 KB
testcase_09 AC 34 ms
51,840 KB
testcase_10 AC 888 ms
76,668 KB
testcase_11 AC 368 ms
76,416 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 300 ms
76,544 KB
testcase_16 AC 416 ms
76,032 KB
testcase_17 AC 448 ms
76,160 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 525 ms
76,160 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 304 ms
76,288 KB
testcase_27 WA -
testcase_28 AC 464 ms
75,904 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 443 ms
76,396 KB
testcase_32 AC 375 ms
75,904 KB
testcase_33 AC 436 ms
76,788 KB
testcase_34 AC 425 ms
75,904 KB
testcase_35 AC 300 ms
76,392 KB
testcase_36 AC 298 ms
76,032 KB
testcase_37 AC 442 ms
76,288 KB
testcase_38 AC 455 ms
76,032 KB
testcase_39 AC 452 ms
75,904 KB
testcase_40 AC 258 ms
76,032 KB
testcase_41 AC 500 ms
76,288 KB
testcase_42 AC 416 ms
76,288 KB
testcase_43 AC 424 ms
76,244 KB
testcase_44 AC 522 ms
75,904 KB
testcase_45 AC 362 ms
76,544 KB
testcase_46 AC 342 ms
76,416 KB
testcase_47 AC 458 ms
76,268 KB
testcase_48 AC 367 ms
76,288 KB
testcase_49 AC 333 ms
76,416 KB
testcase_50 AC 274 ms
75,904 KB
testcase_51 AC 287 ms
76,032 KB
testcase_52 AC 224 ms
76,416 KB
testcase_53 AC 426 ms
76,032 KB
testcase_54 AC 353 ms
76,160 KB
testcase_55 AC 379 ms
76,160 KB
testcase_56 AC 392 ms
76,416 KB
testcase_57 AC 375 ms
76,416 KB
testcase_58 AC 194 ms
76,144 KB
testcase_59 AC 445 ms
76,100 KB
testcase_60 AC 397 ms
76,340 KB
testcase_61 AC 318 ms
76,416 KB
testcase_62 AC 441 ms
76,292 KB
testcase_63 AC 486 ms
76,160 KB
testcase_64 AC 544 ms
76,160 KB
testcase_65 AC 314 ms
75,904 KB
testcase_66 AC 479 ms
76,160 KB
testcase_67 AC 267 ms
76,416 KB
testcase_68 AC 302 ms
76,416 KB
testcase_69 AC 237 ms
76,032 KB
testcase_70 AC 265 ms
76,188 KB
testcase_71 AC 318 ms
76,160 KB
testcase_72 AC 433 ms
76,544 KB
testcase_73 AC 373 ms
76,396 KB
testcase_74 AC 440 ms
76,416 KB
testcase_75 AC 462 ms
76,544 KB
testcase_76 AC 411 ms
76,088 KB
testcase_77 AC 438 ms
76,288 KB
testcase_78 AC 521 ms
76,672 KB
testcase_79 AC 456 ms
76,160 KB
testcase_80 AC 533 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://qiita.com/tatesuke/items/59133758ec25146766c3
Q = int(input())
a, b, c, d, e, f = map(int, input().split())


if (c - a) * (f - b) - (d - b) * (e - a) == 0:
    # y軸に平行
    if max(a, c, e) == min(a, c, e):
        px_nume = a
        px_deno = 1
        py_nume = max(b, d, f) + min(b, d, f)
        py_deno = 2
        r2 = (py_deno ** 2) * ((px_nume - a * px_deno) ** 2) + (px_deno ** 2) * ((py_nume - max(b, d, f) * py_deno) ** 2)
    else:
        xy = [[a, b], [c, d], [e, f]]
        xy.sort()

        XM = xy[-1][0]
        xm = xy[0][0]
        px_nume = XM + xm
        px_deno = 2

        YM = xy[-1][1]
        ym = xy[0][1]
        py_nume = YM + ym
        py_deno = 2

        r2 = (py_deno ** 2) * ((px_nume - XM * px_deno) ** 2) + (px_deno ** 2) * ((py_nume - YM * py_deno) ** 2)

    for _ in range(Q):
        x, y = map(int, input().split())
        R2 = py_deno ** 2 * (px_nume - x * px_deno) ** 2 + px_deno ** 2 * (py_nume - y * py_deno) ** 2

        if R2 > r2:
            print("No")
        else:
            print("Yes")
else:
    aa = a * a
    bb = b * b
    cc = c * c
    dd = d * d
    ee = e * e
    ff = f * f

    py_nume = (e - a) * (aa + bb - cc - dd) - (c - a) * (aa + bb - ee- ff)
    py_deno = 2 * (e - a)*(b - d) - 2 * (c - a) * (b - f)

    if c == a:
        px_nume = 2 * (b - f) * py_nume - (aa + bb - ee - ff) * py_deno
        px_deno = 2 * (e - a) * py_deno
    else:
        px_nume = 2 * (b - d) * py_nume - (aa + bb - cc - dd) * py_deno
        px_deno = 2 * (c - a) * py_deno

    r2 = (py_deno ** 2) * ((px_nume - a * px_deno) ** 2) + (px_deno ** 2) * ((py_nume - b * py_deno) ** 2)
    for _ in range(Q):
        x, y = map(int, input().split())
        R2 = py_deno ** 2 * (px_nume - x * px_deno) ** 2 + px_deno ** 2 * (py_nume - y * py_deno) ** 2

        if R2 > r2:
            print("No")
        else:
            print("Yes")
0