結果

問題 No.2769 Number of Rhombi
ユーザー 👑 hahhohahho
提出日時 2024-05-10 22:17:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 952 ms / 5,000 ms
コード長 606 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 244,340 KB
最終ジャッジ日時 2024-12-20 05:57:59
合計ジャッジ時間 26,772 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,084 KB
testcase_01 AC 45 ms
53,976 KB
testcase_02 AC 48 ms
60,444 KB
testcase_03 AC 811 ms
207,552 KB
testcase_04 AC 774 ms
193,660 KB
testcase_05 AC 587 ms
149,868 KB
testcase_06 AC 736 ms
174,864 KB
testcase_07 AC 931 ms
207,708 KB
testcase_08 AC 952 ms
210,248 KB
testcase_09 AC 911 ms
212,444 KB
testcase_10 AC 890 ms
227,416 KB
testcase_11 AC 833 ms
225,624 KB
testcase_12 AC 814 ms
240,660 KB
testcase_13 AC 786 ms
242,256 KB
testcase_14 AC 774 ms
243,592 KB
testcase_15 AC 786 ms
243,680 KB
testcase_16 AC 769 ms
244,060 KB
testcase_17 AC 762 ms
243,740 KB
testcase_18 AC 766 ms
243,840 KB
testcase_19 AC 761 ms
243,420 KB
testcase_20 AC 740 ms
244,220 KB
testcase_21 AC 755 ms
243,760 KB
testcase_22 AC 760 ms
243,756 KB
testcase_23 AC 751 ms
243,760 KB
testcase_24 AC 44 ms
54,900 KB
testcase_25 AC 779 ms
242,832 KB
testcase_26 AC 782 ms
243,212 KB
testcase_27 AC 773 ms
242,148 KB
testcase_28 AC 757 ms
243,972 KB
testcase_29 AC 756 ms
244,032 KB
testcase_30 AC 762 ms
244,340 KB
testcase_31 AC 807 ms
240,636 KB
testcase_32 AC 870 ms
209,476 KB
testcase_33 AC 891 ms
209,752 KB
testcase_34 AC 863 ms
225,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations
from math import gcd
from collections import defaultdict

n = int(input())
points = [tuple(map(int,input().split())) for _ in range(n)]
mids = defaultdict(int)

for (x0,y0),(x1,y1) in combinations(points, 2):
    dx = x1-x0
    dy = y1-y0
    if dx == 0:
        dy = 1
    elif dy == 0:
        dx = 1
    else:
        d = gcd(dx, dy)*(-1 if dx < 0 else 1)
        dx //= d
        dy //= d
    mids[x0+x1, y0+y1, dx, dy] += 1

res = 0
for (mx, my, dx, dy), cnt in mids.items():
    if dy <= 0:
        continue
    res += cnt*mids.get((mx, my, dy, -dx), 0)
print(res)
0