結果

問題 No.2769 Number of Rhombi
ユーザー timitimi
提出日時 2024-06-04 00:16:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,257 ms / 5,000 ms
コード長 820 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 240,976 KB
最終ジャッジ日時 2024-12-23 10:43:54
合計ジャッジ時間 34,718 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,224 KB
testcase_01 AC 46 ms
52,224 KB
testcase_02 AC 53 ms
57,600 KB
testcase_03 AC 1,074 ms
208,760 KB
testcase_04 AC 1,039 ms
190,580 KB
testcase_05 AC 779 ms
151,560 KB
testcase_06 AC 979 ms
170,720 KB
testcase_07 AC 1,257 ms
205,212 KB
testcase_08 AC 1,179 ms
205,900 KB
testcase_09 AC 1,160 ms
208,908 KB
testcase_10 AC 1,145 ms
223,760 KB
testcase_11 AC 1,115 ms
221,080 KB
testcase_12 AC 1,061 ms
224,592 KB
testcase_13 AC 1,072 ms
239,340 KB
testcase_14 AC 1,023 ms
240,016 KB
testcase_15 AC 1,015 ms
240,208 KB
testcase_16 AC 1,013 ms
240,244 KB
testcase_17 AC 1,019 ms
240,260 KB
testcase_18 AC 1,055 ms
240,976 KB
testcase_19 AC 1,042 ms
240,156 KB
testcase_20 AC 1,023 ms
240,716 KB
testcase_21 AC 1,001 ms
240,136 KB
testcase_22 AC 1,015 ms
240,636 KB
testcase_23 AC 1,021 ms
240,804 KB
testcase_24 AC 48 ms
52,096 KB
testcase_25 AC 1,101 ms
238,744 KB
testcase_26 AC 1,060 ms
240,816 KB
testcase_27 AC 1,041 ms
237,564 KB
testcase_28 AC 1,040 ms
240,188 KB
testcase_29 AC 1,023 ms
240,568 KB
testcase_30 AC 1,063 ms
240,520 KB
testcase_31 AC 1,082 ms
224,800 KB
testcase_32 AC 1,218 ms
206,596 KB
testcase_33 AC 1,231 ms
206,008 KB
testcase_34 AC 1,169 ms
223,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N=int(input())
A=[];D={};E={};F={}
for i in range(N):
  x,y=map(int, input().split())
  A.append((x,y))
  
  
cc=0
for i in range(N-1):
  for j in range(i+1,N):
    cc+=1
    ax,ay=A[i];bx,by=A[j]
    #x,y:中点
    x,y=(ax+bx),(ay+by)
    xx,yy=ax-bx,ay-by 
    if xx==0:
      if (x,y) not in E:
        E[(x,y)]=0
      E[x,y]+=1
    elif yy==0:
      if (x,y) not in F:
        F[(x,y)]=0
      F[x,y]+=1
    else:
      c=math.gcd(abs(xx),abs(yy))
      xx//=c;yy//=c
      if xx<0:
        xx*=-1;yy*=-1 
      if (xx,yy,x,y) not in D:
        D[(xx,yy,x,y)]=0
      D[(xx,yy,x,y)]+=1 


ansa=0
for x,y in E:
  if (x,y) in F:
    ansa+=E[(x,y)]*F[(x,y)]

ansb=0
for xx,yy,x,y in D:
  p,q=-yy,xx
  if p<0:
    p*=-1;q*=-1 
  if (p,q,x,y) in D:
    ansb+=D[(p,q,x,y)]*D[(xx,yy,x,y)]
print(ansa+ansb//2)
0