結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
56,060 KB
testcase_01 AC 40 ms
56,792 KB
testcase_02 RE -
testcase_03 AC 1,238 ms
79,916 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 624 ms
78,868 KB
testcase_33 AC 1,077 ms
80,192 KB
testcase_34 AC 1,189 ms
80,836 KB
testcase_35 AC 630 ms
78,680 KB
testcase_36 AC 723 ms
79,304 KB
testcase_37 AC 1,019 ms
80,432 KB
testcase_38 AC 224 ms
77,948 KB
testcase_39 AC 581 ms
79,464 KB
testcase_40 AC 1,134 ms
80,784 KB
testcase_41 AC 751 ms
79,644 KB
testcase_42 AC 741 ms
78,888 KB
testcase_43 AC 172 ms
77,468 KB
testcase_44 AC 44 ms
57,060 KB
testcase_45 AC 357 ms
78,088 KB
testcase_46 AC 471 ms
78,448 KB
testcase_47 AC 460 ms
78,544 KB
testcase_48 AC 248 ms
77,720 KB
testcase_49 AC 86 ms
77,268 KB
testcase_50 AC 129 ms
77,116 KB
testcase_51 AC 500 ms
78,004 KB
testcase_52 AC 84 ms
77,272 KB
testcase_53 AC 527 ms
78,388 KB
testcase_54 AC 716 ms
78,524 KB
testcase_55 AC 222 ms
77,628 KB
testcase_56 AC 358 ms
77,952 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