結果

問題 No.2602 Real Collider
ユーザー pitPpitP
提出日時 2024-01-12 22:48:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,240 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-09-27 23:34:33
合計ジャッジ時間 27,665 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 35 ms
51,968 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 320 ms
76,416 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 371 ms
76,672 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 450 ms
76,672 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 368 ms
76,416 KB
testcase_32 AC 336 ms
76,936 KB
testcase_33 AC 356 ms
76,800 KB
testcase_34 AC 363 ms
76,980 KB
testcase_35 AC 258 ms
77,208 KB
testcase_36 AC 260 ms
76,672 KB
testcase_37 AC 393 ms
76,672 KB
testcase_38 AC 394 ms
77,200 KB
testcase_39 AC 387 ms
76,416 KB
testcase_40 AC 229 ms
77,128 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 449 ms
76,544 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 389 ms
76,544 KB
testcase_48 WA -
testcase_49 AC 287 ms
76,800 KB
testcase_50 AC 245 ms
76,800 KB
testcase_51 AC 250 ms
76,800 KB
testcase_52 WA -
testcase_53 AC 371 ms
76,800 KB
testcase_54 WA -
testcase_55 AC 342 ms
76,800 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 AC 349 ms
76,896 KB
testcase_60 AC 331 ms
76,800 KB
testcase_61 AC 271 ms
76,908 KB
testcase_62 WA -
testcase_63 WA -
testcase_64 AC 478 ms
76,672 KB
testcase_65 AC 271 ms
77,056 KB
testcase_66 AC 401 ms
76,672 KB
testcase_67 WA -
testcase_68 WA -
testcase_69 AC 197 ms
76,928 KB
testcase_70 WA -
testcase_71 AC 258 ms
76,672 KB
testcase_72 AC 358 ms
76,544 KB
testcase_73 AC 314 ms
77,440 KB
testcase_74 AC 357 ms
76,416 KB
testcase_75 AC 376 ms
76,936 KB
testcase_76 WA -
testcase_77 WA -
testcase_78 AC 430 ms
76,672 KB
testcase_79 AC 374 ms
76,672 KB
testcase_80 WA -
権限があれば一括ダウンロードができます

ソースコード

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:
    px_nume = max(a, c, e) + min(a, c, e)
    px_deno = 2
    px = px_nume / px_deno

    py_nume = max(b, d, f) + min(b, d, f)
    py_deno = 2
    py = py_nume / py_deno
    r2 = py_deno ** 2 * (px_nume - a * px_deno) ** 2 + px_deno ** 2 * (py_nume - b * py_deno) ** 2
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)
    py = py_nume / py_deno

    if c == a:
        px_nume = 2 * (b - f) * py - aa - bb + ee + ff
        px_deno = 2 * (e - a)
    else:
        px_nume = 2 * (b - d) * py - aa - bb + cc + dd
        px_deno = 2 * (c - a)
    px = px_nume / px_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