結果

問題 No.2769 Number of Rhombi
ユーザー shobonvipshobonvip
提出日時 2024-05-31 23:03:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,079 ms / 5,000 ms
コード長 679 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 245,912 KB
最終ジャッジ日時 2024-05-31 23:03:41
合計ジャッジ時間 29,750 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,648 KB
testcase_01 AC 44 ms
54,604 KB
testcase_02 AC 47 ms
60,808 KB
testcase_03 AC 898 ms
209,196 KB
testcase_04 AC 862 ms
195,240 KB
testcase_05 AC 728 ms
150,296 KB
testcase_06 AC 912 ms
174,924 KB
testcase_07 AC 1,079 ms
208,536 KB
testcase_08 AC 1,013 ms
210,520 KB
testcase_09 AC 987 ms
212,884 KB
testcase_10 AC 972 ms
222,360 KB
testcase_11 AC 916 ms
226,144 KB
testcase_12 AC 928 ms
241,432 KB
testcase_13 AC 877 ms
243,320 KB
testcase_14 AC 864 ms
244,136 KB
testcase_15 AC 851 ms
244,776 KB
testcase_16 AC 865 ms
244,504 KB
testcase_17 AC 831 ms
244,868 KB
testcase_18 AC 872 ms
244,708 KB
testcase_19 AC 890 ms
245,680 KB
testcase_20 AC 887 ms
245,912 KB
testcase_21 AC 866 ms
245,404 KB
testcase_22 AC 893 ms
245,356 KB
testcase_23 AC 843 ms
244,940 KB
testcase_24 AC 45 ms
54,596 KB
testcase_25 AC 905 ms
243,444 KB
testcase_26 AC 893 ms
244,156 KB
testcase_27 AC 889 ms
245,208 KB
testcase_28 AC 879 ms
244,568 KB
testcase_29 AC 849 ms
245,500 KB
testcase_30 AC 873 ms
244,092 KB
testcase_31 AC 906 ms
241,480 KB
testcase_32 AC 1,021 ms
210,020 KB
testcase_33 AC 1,034 ms
209,744 KB
testcase_34 AC 967 ms
221,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
from collections import defaultdict
n = int(input())
d = defaultdict(int)
x = [0] * n
y = [0] * n
for i in range(n):
	x[i], y[i] = map(int,input().split())
	x[i] *= 2
	y[i] *= 2

def adjust(a, b):
	g = gcd(a, b)
	a //= g
	b //= g
	if a == 0 and b < 0: b = -b
	if b == 0 and a < 0: a = -a
	if a < 0:
		a = -a
		b = -b
	return (a, b)

for i in range(n):
	for j in range(i + 1, n):
		xt, yt = adjust(x[j] - x[i], y[j] - y[i])
		d[(
			(x[i] + x[j]) // 2,
			(y[i] + y[j]) // 2,
			xt,
			yt
		)] += 1

ans = 0
for t, c in d.items():
	xt, yt = adjust(-t[3], t[2])
	if (t[0], t[1], xt, yt) not in d:
		continue
	ans += d[(t[0], t[1], xt, yt)] * c

print(ans // 2)
0