結果

問題 No.2602 Real Collider
ユーザー pitPpitP
提出日時 2024-01-12 22:59:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,566 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 76,940 KB
最終ジャッジ日時 2024-09-27 23:47:05
合計ジャッジ時間 31,647 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,940 KB
testcase_01 AC 33 ms
54,048 KB
testcase_02 AC 35 ms
52,816 KB
testcase_03 AC 40 ms
54,724 KB
testcase_04 AC 38 ms
53,180 KB
testcase_05 AC 37 ms
52,636 KB
testcase_06 AC 39 ms
53,312 KB
testcase_07 AC 38 ms
52,816 KB
testcase_08 AC 40 ms
52,388 KB
testcase_09 AC 39 ms
53,496 KB
testcase_10 AC 934 ms
76,212 KB
testcase_11 AC 396 ms
76,512 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 313 ms
76,000 KB
testcase_16 AC 432 ms
76,228 KB
testcase_17 AC 458 ms
76,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 543 ms
76,304 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 298 ms
76,108 KB
testcase_27 WA -
testcase_28 AC 444 ms
76,612 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 408 ms
76,504 KB
testcase_32 AC 363 ms
75,944 KB
testcase_33 AC 427 ms
76,092 KB
testcase_34 AC 440 ms
75,844 KB
testcase_35 AC 287 ms
75,768 KB
testcase_36 AC 288 ms
76,256 KB
testcase_37 AC 456 ms
76,152 KB
testcase_38 AC 469 ms
76,000 KB
testcase_39 AC 452 ms
76,220 KB
testcase_40 AC 261 ms
76,096 KB
testcase_41 AC 503 ms
76,236 KB
testcase_42 AC 408 ms
76,020 KB
testcase_43 AC 416 ms
76,144 KB
testcase_44 AC 499 ms
76,376 KB
testcase_45 AC 343 ms
76,092 KB
testcase_46 AC 338 ms
76,024 KB
testcase_47 AC 466 ms
76,128 KB
testcase_48 AC 381 ms
75,952 KB
testcase_49 AC 327 ms
76,300 KB
testcase_50 AC 266 ms
76,384 KB
testcase_51 AC 280 ms
75,952 KB
testcase_52 AC 213 ms
76,484 KB
testcase_53 AC 417 ms
76,508 KB
testcase_54 AC 351 ms
76,164 KB
testcase_55 AC 387 ms
76,608 KB
testcase_56 AC 374 ms
76,160 KB
testcase_57 AC 352 ms
76,072 KB
testcase_58 AC 192 ms
76,128 KB
testcase_59 AC 425 ms
76,520 KB
testcase_60 AC 393 ms
75,940 KB
testcase_61 AC 309 ms
76,344 KB
testcase_62 AC 430 ms
76,056 KB
testcase_63 AC 463 ms
76,364 KB
testcase_64 AC 535 ms
76,552 KB
testcase_65 AC 309 ms
76,140 KB
testcase_66 AC 464 ms
75,844 KB
testcase_67 AC 255 ms
76,000 KB
testcase_68 AC 281 ms
76,020 KB
testcase_69 AC 221 ms
76,432 KB
testcase_70 AC 251 ms
76,316 KB
testcase_71 AC 315 ms
76,104 KB
testcase_72 AC 418 ms
76,088 KB
testcase_73 AC 363 ms
76,284 KB
testcase_74 AC 429 ms
76,020 KB
testcase_75 AC 450 ms
76,560 KB
testcase_76 AC 390 ms
76,160 KB
testcase_77 AC 418 ms
76,092 KB
testcase_78 AC 489 ms
76,448 KB
testcase_79 AC 479 ms
76,092 KB
testcase_80 AC 488 ms
76,428 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:
    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