結果

問題 No.2769 Number of Rhombi
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-06-01 04:39:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 953 ms / 5,000 ms
コード長 597 bytes
コンパイル時間 705 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 251,336 KB
最終ジャッジ日時 2024-12-21 07:24:48
合計ジャッジ時間 27,018 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,712 KB
testcase_01 AC 38 ms
53,056 KB
testcase_02 AC 41 ms
59,200 KB
testcase_03 AC 843 ms
215,068 KB
testcase_04 AC 823 ms
200,856 KB
testcase_05 AC 550 ms
157,432 KB
testcase_06 AC 690 ms
178,520 KB
testcase_07 AC 847 ms
212,284 KB
testcase_08 AC 844 ms
213,576 KB
testcase_09 AC 953 ms
216,404 KB
testcase_10 AC 904 ms
231,080 KB
testcase_11 AC 882 ms
234,372 KB
testcase_12 AC 747 ms
248,808 KB
testcase_13 AC 738 ms
247,524 KB
testcase_14 AC 737 ms
250,996 KB
testcase_15 AC 743 ms
251,336 KB
testcase_16 AC 738 ms
249,140 KB
testcase_17 AC 716 ms
248,904 KB
testcase_18 AC 755 ms
248,852 KB
testcase_19 AC 743 ms
249,060 KB
testcase_20 AC 746 ms
248,848 KB
testcase_21 AC 774 ms
247,348 KB
testcase_22 AC 754 ms
249,264 KB
testcase_23 AC 760 ms
247,888 KB
testcase_24 AC 39 ms
52,468 KB
testcase_25 AC 830 ms
250,512 KB
testcase_26 AC 751 ms
250,848 KB
testcase_27 AC 778 ms
246,780 KB
testcase_28 AC 792 ms
246,604 KB
testcase_29 AC 730 ms
249,356 KB
testcase_30 AC 801 ms
247,172 KB
testcase_31 AC 833 ms
248,988 KB
testcase_32 AC 941 ms
216,560 KB
testcase_33 AC 888 ms
215,832 KB
testcase_34 AC 916 ms
230,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
p=[]
for i in range(n):
  x,y=map(int,input().split())
  p+=[(x,y)]
from math import gcd
p.sort()
l={}
for i in range(n-1):
  for j in range(i+1,n):
    sx,sy=p[i]
    tx,ty=p[j]
    mx,my=sx+tx,sy+ty
    dx,dy=tx-sx,ty-sy
    if dx==0:
      dy=1
    elif dy==0:
      dx=1
    else:
      g=gcd(abs(dx),abs(dy))
      dx//=g
      dy//=g
    v=(mx,my,dx,dy)
    if v not in l:
      l[v]=0
    l[v]+=1
g=0
for a in l:
  mx,my,dx,dy=a
  if dx<=0:
    continue
  if dy<0:
    continue
  if dy==0:
    b=(mx,my,0,1)
  else:
    b=(mx,my,dy,-dx)
  if b in l:
    g+=l[a]*l[b]
print(g)
0