結果

問題 No.2355 Unhappy Back Dance
ユーザー flygonflygon
提出日時 2023-06-16 22:40:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,717 ms / 6,000 ms
コード長 615 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 83,616 KB
最終ジャッジ日時 2024-06-24 15:26:23
合計ジャッジ時間 27,500 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,956 KB
testcase_01 AC 43 ms
55,352 KB
testcase_02 AC 44 ms
55,628 KB
testcase_03 AC 43 ms
56,248 KB
testcase_04 AC 42 ms
55,108 KB
testcase_05 AC 43 ms
55,056 KB
testcase_06 AC 535 ms
77,528 KB
testcase_07 AC 560 ms
77,336 KB
testcase_08 AC 670 ms
78,092 KB
testcase_09 AC 680 ms
77,800 KB
testcase_10 AC 810 ms
79,908 KB
testcase_11 AC 807 ms
79,836 KB
testcase_12 AC 671 ms
77,812 KB
testcase_13 AC 671 ms
77,768 KB
testcase_14 AC 784 ms
79,436 KB
testcase_15 AC 43 ms
55,100 KB
testcase_16 AC 1,701 ms
83,392 KB
testcase_17 AC 1,717 ms
83,264 KB
testcase_18 AC 1,701 ms
83,616 KB
testcase_19 AC 1,706 ms
83,308 KB
testcase_20 AC 1,715 ms
83,328 KB
testcase_21 AC 760 ms
78,928 KB
testcase_22 AC 208 ms
77,584 KB
testcase_23 AC 217 ms
77,604 KB
testcase_24 AC 1,558 ms
83,180 KB
testcase_25 AC 873 ms
79,076 KB
testcase_26 AC 876 ms
79,216 KB
testcase_27 AC 746 ms
78,364 KB
testcase_28 AC 83 ms
75,068 KB
testcase_29 AC 112 ms
77,588 KB
testcase_30 AC 1,426 ms
81,428 KB
testcase_31 AC 1,057 ms
79,864 KB
testcase_32 AC 173 ms
77,252 KB
testcase_33 AC 633 ms
78,300 KB
testcase_34 AC 73 ms
73,680 KB
testcase_35 AC 87 ms
77,104 KB
testcase_36 AC 753 ms
78,476 KB
testcase_37 AC 450 ms
78,140 KB
testcase_38 AC 533 ms
78,072 KB
testcase_39 AC 425 ms
77,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd
n = int(input())
xy = [list(map(int,input().split())) for i in range(n)]

ans = 0
for i in range(n):
    d = defaultdict(int)
    xi,yi = xy[i]
    mx = 0
    for j in range(n):
        if i==j: continue
        xj,yj = xy[j]
        g = gcd(abs(xi-xj), abs(yi-yj))
        d[((xi-xj)//g, (yi-yj)//g)] += 1
        mx = max(mx, d[((xi-xj)//g, (yi-yj)//g)])
    ans += mx >= 2
print(ans)

    
0