結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,352 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 44 ms
57,472 KB
testcase_03 AC 866 ms
215,276 KB
testcase_04 AC 856 ms
200,804 KB
testcase_05 AC 583 ms
157,164 KB
testcase_06 AC 767 ms
178,560 KB
testcase_07 AC 869 ms
212,300 KB
testcase_08 AC 891 ms
213,464 KB
testcase_09 AC 861 ms
216,360 KB
testcase_10 AC 878 ms
231,132 KB
testcase_11 AC 855 ms
234,084 KB
testcase_12 AC 870 ms
248,892 KB
testcase_13 AC 811 ms
247,612 KB
testcase_14 AC 795 ms
251,032 KB
testcase_15 AC 781 ms
251,152 KB
testcase_16 AC 786 ms
249,136 KB
testcase_17 AC 787 ms
248,960 KB
testcase_18 AC 765 ms
249,256 KB
testcase_19 AC 796 ms
249,000 KB
testcase_20 AC 840 ms
249,116 KB
testcase_21 AC 800 ms
247,544 KB
testcase_22 AC 792 ms
248,888 KB
testcase_23 AC 775 ms
247,588 KB
testcase_24 AC 40 ms
52,736 KB
testcase_25 AC 855 ms
250,352 KB
testcase_26 AC 904 ms
250,740 KB
testcase_27 AC 790 ms
246,848 KB
testcase_28 AC 776 ms
246,608 KB
testcase_29 AC 786 ms
249,192 KB
testcase_30 AC 798 ms
247,256 KB
testcase_31 AC 823 ms
249,436 KB
testcase_32 AC 920 ms
216,496 KB
testcase_33 AC 919 ms
216,184 KB
testcase_34 AC 891 ms
229,904 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