結果

問題 No.2173 Nightcord
ユーザー chineristACchineristAC
提出日時 2022-12-25 02:11:59
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 716 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 80,768 KB
最終ジャッジ日時 2024-04-29 07:53:33
合計ジャッジ時間 20,595 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
55,808 KB
testcase_01 AC 50 ms
55,808 KB
testcase_02 RE -
testcase_03 AC 1,400 ms
79,872 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 AC 731 ms
78,976 KB
testcase_33 AC 1,262 ms
80,128 KB
testcase_34 AC 1,343 ms
80,768 KB
testcase_35 AC 727 ms
78,592 KB
testcase_36 AC 845 ms
79,104 KB
testcase_37 AC 1,187 ms
80,128 KB
testcase_38 AC 275 ms
77,952 KB
testcase_39 AC 685 ms
79,104 KB
testcase_40 AC 1,321 ms
80,768 KB
testcase_41 AC 879 ms
79,360 KB
testcase_42 AC 844 ms
78,848 KB
testcase_43 AC 202 ms
77,568 KB
testcase_44 AC 55 ms
56,832 KB
testcase_45 AC 412 ms
78,080 KB
testcase_46 AC 538 ms
78,208 KB
testcase_47 AC 533 ms
78,464 KB
testcase_48 AC 294 ms
77,440 KB
testcase_49 AC 113 ms
77,312 KB
testcase_50 AC 163 ms
77,440 KB
testcase_51 AC 570 ms
77,952 KB
testcase_52 AC 109 ms
77,056 KB
testcase_53 AC 604 ms
77,952 KB
testcase_54 AC 811 ms
78,336 KB
testcase_55 AC 258 ms
77,824 KB
testcase_56 AC 417 ms
78,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict,Counter
from heapq import heapify,heappop,heappush
from itertools import cycle, permutations
from math import log,gcd

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())



N,K = mi()

assert K == 3

star = [[] for p in range(2)]
for _ in range(N):
    x,y,c = mi()
    star[c-1].append((x,y))

for p in range(2):
    for x,y in star[p]:
        S = set()
        for xx,yy in star[p^1]:
            xx,yy = xx-x,yy-y
            g = gcd(xx,yy)
            xx,yy = xx//g,yy//g
            if (-xx,-yy) in S:
                exit(print("Yes"))
            S.add((xx,yy))

print("No")

        
0