結果

問題 No.2769 Number of Rhombi
ユーザー hitonanodehitonanode
提出日時 2024-06-21 00:50:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,517 ms / 5,000 ms
コード長 630 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 357,808 KB
最終ジャッジ日時 2024-06-21 00:50:50
合計ジャッジ時間 41,206 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,188 KB
testcase_01 AC 40 ms
52,892 KB
testcase_02 AC 43 ms
58,496 KB
testcase_03 AC 1,386 ms
290,280 KB
testcase_04 AC 1,290 ms
292,076 KB
testcase_05 AC 916 ms
228,148 KB
testcase_06 AC 1,226 ms
282,284 KB
testcase_07 AC 1,480 ms
286,140 KB
testcase_08 AC 1,485 ms
288,444 KB
testcase_09 AC 1,407 ms
283,104 KB
testcase_10 AC 1,376 ms
298,620 KB
testcase_11 AC 1,270 ms
312,732 KB
testcase_12 AC 1,220 ms
322,976 KB
testcase_13 AC 1,180 ms
336,888 KB
testcase_14 AC 1,136 ms
337,936 KB
testcase_15 AC 1,124 ms
344,272 KB
testcase_16 AC 1,082 ms
338,112 KB
testcase_17 AC 1,052 ms
338,484 KB
testcase_18 AC 1,073 ms
339,040 KB
testcase_19 AC 1,162 ms
357,808 KB
testcase_20 AC 1,053 ms
339,152 KB
testcase_21 AC 1,199 ms
338,040 KB
testcase_22 AC 1,085 ms
337,812 KB
testcase_23 AC 1,031 ms
339,016 KB
testcase_24 AC 38 ms
53,212 KB
testcase_25 AC 1,146 ms
337,108 KB
testcase_26 AC 1,129 ms
338,460 KB
testcase_27 AC 1,105 ms
339,728 KB
testcase_28 AC 1,110 ms
337,476 KB
testcase_29 AC 1,072 ms
338,476 KB
testcase_30 AC 1,072 ms
338,344 KB
testcase_31 AC 1,301 ms
311,612 KB
testcase_32 AC 1,490 ms
288,628 KB
testcase_33 AC 1,429 ms
288,052 KB
testcase_34 AC 1,517 ms
307,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd


N = int(input())
xys = [tuple(map(int, input().split())) for _ in range(N)]

ret = 0
memo: dict[tuple[int, int, int, int], int] = {}

for i in range(N):
    for j in range(i + 1, N):
        x1, y1 = xys[i]
        x2, y2 = xys[j]
        cx = x1 + x2
        cy = y1 + y2

        dx = x2 - x1
        dy = y2 - y1
        g = gcd(dx, dy)
        dx //= g
        dy //= g

        if (cx, cy, dy, -dx) in memo:
            ret += memo[(cx, cy, dy, -dx)]

        memo[(cx, cy, dx, dy)] = memo.get((cx, cy, dx, dy), 0) + 1
        memo[(cx, cy, -dx, -dy)] = memo.get((cx, cy, -dx, -dy), 0) + 1

print(ret)
0