結果

問題 No.2602 Real Collider
ユーザー ゼットゼット
提出日時 2024-01-12 22:01:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 347 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,140 KB
最終ジャッジ日時 2024-09-27 22:14:34
合計ジャッジ時間 32,897 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,224 KB
testcase_01 WA -
testcase_02 AC 36 ms
53,072 KB
testcase_03 AC 37 ms
53,372 KB
testcase_04 AC 37 ms
52,648 KB
testcase_05 AC 36 ms
52,268 KB
testcase_06 AC 35 ms
52,504 KB
testcase_07 AC 36 ms
52,152 KB
testcase_08 AC 36 ms
53,016 KB
testcase_09 AC 37 ms
51,944 KB
testcase_10 AC 927 ms
76,580 KB
testcase_11 AC 393 ms
76,204 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 305 ms
76,296 KB
testcase_16 AC 448 ms
76,928 KB
testcase_17 AC 472 ms
76,680 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 554 ms
76,936 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 315 ms
76,880 KB
testcase_27 WA -
testcase_28 AC 469 ms
76,916 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 433 ms
76,352 KB
testcase_32 AC 394 ms
76,620 KB
testcase_33 AC 457 ms
76,464 KB
testcase_34 AC 446 ms
76,772 KB
testcase_35 AC 297 ms
76,396 KB
testcase_36 AC 298 ms
76,748 KB
testcase_37 AC 471 ms
76,332 KB
testcase_38 AC 485 ms
76,456 KB
testcase_39 AC 473 ms
76,600 KB
testcase_40 AC 268 ms
76,428 KB
testcase_41 AC 522 ms
76,468 KB
testcase_42 AC 419 ms
76,664 KB
testcase_43 AC 457 ms
76,328 KB
testcase_44 AC 534 ms
76,516 KB
testcase_45 AC 378 ms
76,252 KB
testcase_46 AC 357 ms
76,180 KB
testcase_47 AC 491 ms
76,708 KB
testcase_48 AC 376 ms
76,512 KB
testcase_49 AC 333 ms
76,268 KB
testcase_50 AC 288 ms
76,208 KB
testcase_51 AC 294 ms
76,260 KB
testcase_52 AC 229 ms
76,080 KB
testcase_53 AC 442 ms
76,396 KB
testcase_54 AC 362 ms
76,536 KB
testcase_55 AC 391 ms
76,628 KB
testcase_56 AC 388 ms
76,680 KB
testcase_57 AC 370 ms
76,876 KB
testcase_58 AC 193 ms
77,012 KB
testcase_59 AC 422 ms
76,540 KB
testcase_60 AC 387 ms
76,808 KB
testcase_61 AC 336 ms
76,800 KB
testcase_62 AC 451 ms
76,524 KB
testcase_63 AC 498 ms
76,600 KB
testcase_64 AC 566 ms
76,464 KB
testcase_65 AC 325 ms
76,248 KB
testcase_66 AC 479 ms
76,532 KB
testcase_67 AC 267 ms
76,344 KB
testcase_68 AC 303 ms
76,724 KB
testcase_69 AC 241 ms
76,828 KB
testcase_70 AC 261 ms
76,396 KB
testcase_71 AC 312 ms
76,468 KB
testcase_72 AC 434 ms
76,384 KB
testcase_73 AC 366 ms
76,336 KB
testcase_74 AC 439 ms
76,364 KB
testcase_75 AC 460 ms
76,816 KB
testcase_76 AC 416 ms
76,612 KB
testcase_77 AC 449 ms
76,180 KB
testcase_78 AC 524 ms
76,604 KB
testcase_79 AC 446 ms
76,864 KB
testcase_80 AC 522 ms
76,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q=int(input())
a,b,c,d,e,f=map(int,input().split())
x1=(a**2+b**2)*(d-f)+(c**2+d**2)*(f-b)+(e**2+f**2)*(b-d)
y1=(a**2+b**2)*(e-c)+(c**2+d**2)*(a-e)+(e**2+f**2)*(c-a)
k=2*(a*(d-f)+c*(f-b)+e*(b-d))
r2=(x1-a*k)**2+(y1-b*k)**2
for _ in range(Q):
  x,y=map(int,input().split())
  if (x1-x*k)**2+(y1-y*k)**2<=r2:
    print('Yes')
  else:
    print('No')
0