結果

問題 No.2602 Real Collider
ユーザー 👑 rin204rin204
提出日時 2024-01-12 22:22:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,117 bytes
コンパイル時間 1,261 ms
コンパイル使用メモリ 81,896 KB
実行使用メモリ 76,776 KB
最終ジャッジ日時 2024-09-27 22:51:31
合計ジャッジ時間 20,147 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,668 KB
testcase_01 AC 33 ms
53,196 KB
testcase_02 AC 34 ms
53,540 KB
testcase_03 AC 37 ms
54,168 KB
testcase_04 WA -
testcase_05 AC 33 ms
52,824 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 203 ms
76,344 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 177 ms
76,776 KB
testcase_16 AC 241 ms
76,460 KB
testcase_17 AC 240 ms
76,464 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 278 ms
76,156 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 171 ms
75,936 KB
testcase_27 WA -
testcase_28 AC 242 ms
76,564 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 226 ms
76,124 KB
testcase_32 AC 205 ms
76,356 KB
testcase_33 AC 232 ms
76,244 KB
testcase_34 AC 232 ms
76,160 KB
testcase_35 AC 174 ms
76,172 KB
testcase_36 AC 167 ms
75,872 KB
testcase_37 AC 250 ms
76,120 KB
testcase_38 AC 242 ms
76,252 KB
testcase_39 AC 250 ms
76,284 KB
testcase_40 AC 156 ms
76,520 KB
testcase_41 AC 257 ms
76,176 KB
testcase_42 AC 217 ms
76,308 KB
testcase_43 AC 227 ms
76,380 KB
testcase_44 AC 268 ms
76,168 KB
testcase_45 AC 197 ms
76,112 KB
testcase_46 AC 188 ms
76,580 KB
testcase_47 AC 249 ms
76,196 KB
testcase_48 AC 213 ms
76,456 KB
testcase_49 AC 189 ms
76,248 KB
testcase_50 AC 157 ms
76,452 KB
testcase_51 AC 173 ms
76,716 KB
testcase_52 AC 139 ms
76,132 KB
testcase_53 AC 229 ms
76,092 KB
testcase_54 AC 195 ms
76,164 KB
testcase_55 AC 211 ms
76,280 KB
testcase_56 AC 216 ms
76,652 KB
testcase_57 AC 200 ms
76,436 KB
testcase_58 AC 122 ms
76,232 KB
testcase_59 AC 234 ms
76,464 KB
testcase_60 AC 208 ms
75,924 KB
testcase_61 AC 178 ms
76,212 KB
testcase_62 AC 231 ms
76,592 KB
testcase_63 AC 259 ms
76,156 KB
testcase_64 AC 280 ms
76,144 KB
testcase_65 AC 175 ms
76,112 KB
testcase_66 AC 244 ms
76,524 KB
testcase_67 AC 151 ms
76,240 KB
testcase_68 AC 167 ms
76,236 KB
testcase_69 AC 142 ms
76,112 KB
testcase_70 AC 153 ms
76,436 KB
testcase_71 AC 173 ms
76,164 KB
testcase_72 AC 224 ms
76,292 KB
testcase_73 AC 201 ms
76,112 KB
testcase_74 AC 228 ms
76,480 KB
testcase_75 AC 236 ms
76,592 KB
testcase_76 AC 212 ms
76,428 KB
testcase_77 AC 220 ms
76,264 KB
testcase_78 AC 274 ms
76,368 KB
testcase_79 AC 232 ms
76,384 KB
testcase_80 AC 267 ms
76,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://tjkendev.github.io/procon-library/python/geometry/circles_associated_with_triangle.html
def circumcircle(P1, P2, P3):
    x1, y1 = P1
    x2, y2 = P2
    x3, y3 = P3
    a = 2 * (x1 - x2)
    b = 2 * (y1 - y2)
    p = x1**2 - x2**2 + y1**2 - y2**2
    c = 2 * (x1 - x3)
    d = 2 * (y1 - y3)
    q = x1**2 - x3**2 + y1**2 - y3**2
    det = a * d - b * c
    if det == 0:
        return None
    x = d * p - b * q
    y = a * q - c * p
    if det < 0:
        x = -x
        y = -y
        det = -det
    x /= det
    y /= det
    r2 = (x - x1) ** 2 + (y - y1) ** 2
    return x, y, r2


Q = int(input())
xa, ya, xb, yb, xc, yc = map(int, input().split())
res = circumcircle((xa, ya), (xb, yb), (xc, yc))
if res is None:
    Ps = [(xa, ya), (xb, yb), (xc, yc)]
    Ps.sort()
    x1, y1 = Ps[0]
    x2, y2 = Ps[2]
    cx = (x1 + x2) / 2
    cy = (y1 + y2) / 2
    r2 = (cx - x1) ** 2 + (cy - y1) ** 2
else:
    cx, cy, r2 = res

eps = 1e-7
for _ in range(Q):
    x, y = map(int, input().split())
    d2 = (x - cx) ** 2 + (y - cy) ** 2
    if d2 <= r2 + eps:
        print("Yes")
    else:
        print("No")
0