結果

問題 No.2769 Number of Rhombi
ユーザー 👑 hahhohahho
提出日時 2024-05-10 22:17:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 742 ms / 5,000 ms
コード長 606 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 244,324 KB
最終ジャッジ日時 2024-05-10 22:17:47
合計ジャッジ時間 21,637 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,196 KB
testcase_01 AC 38 ms
55,156 KB
testcase_02 AC 39 ms
60,008 KB
testcase_03 AC 640 ms
207,672 KB
testcase_04 AC 592 ms
193,248 KB
testcase_05 AC 468 ms
150,248 KB
testcase_06 AC 592 ms
174,820 KB
testcase_07 AC 695 ms
208,620 KB
testcase_08 AC 733 ms
210,340 KB
testcase_09 AC 742 ms
212,564 KB
testcase_10 AC 680 ms
227,312 KB
testcase_11 AC 668 ms
225,632 KB
testcase_12 AC 643 ms
240,740 KB
testcase_13 AC 610 ms
242,844 KB
testcase_14 AC 620 ms
243,608 KB
testcase_15 AC 598 ms
243,552 KB
testcase_16 AC 622 ms
243,744 KB
testcase_17 AC 595 ms
243,828 KB
testcase_18 AC 621 ms
243,932 KB
testcase_19 AC 599 ms
243,748 KB
testcase_20 AC 635 ms
243,740 KB
testcase_21 AC 598 ms
243,944 KB
testcase_22 AC 622 ms
244,324 KB
testcase_23 AC 617 ms
243,904 KB
testcase_24 AC 37 ms
54,324 KB
testcase_25 AC 642 ms
242,592 KB
testcase_26 AC 608 ms
243,684 KB
testcase_27 AC 637 ms
241,680 KB
testcase_28 AC 582 ms
244,100 KB
testcase_29 AC 610 ms
244,144 KB
testcase_30 AC 599 ms
243,744 KB
testcase_31 AC 662 ms
240,228 KB
testcase_32 AC 703 ms
209,664 KB
testcase_33 AC 725 ms
209,632 KB
testcase_34 AC 684 ms
226,420 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