結果
問題 | No.2602 Real Collider |
ユーザー | pitP |
提出日時 | 2024-01-12 23:02:00 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,599 bytes |
コンパイル時間 | 283 ms |
コンパイル使用メモリ | 82,108 KB |
実行使用メモリ | 64,216 KB |
最終ジャッジ日時 | 2024-09-27 23:47:46 |
合計ジャッジ時間 | 4,423 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
59,020 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
testcase_63 | -- | - |
testcase_64 | -- | - |
testcase_65 | -- | - |
testcase_66 | -- | - |
testcase_67 | -- | - |
testcase_68 | -- | - |
testcase_69 | -- | - |
testcase_70 | -- | - |
testcase_71 | -- | - |
testcase_72 | -- | - |
testcase_73 | -- | - |
testcase_74 | -- | - |
testcase_75 | -- | - |
testcase_76 | -- | - |
testcase_77 | -- | - |
testcase_78 | -- | - |
testcase_79 | -- | - |
testcase_80 | -- | - |
ソースコード
# 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: while True: continue 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")