結果

問題 No.2769 Number of Rhombi
ユーザー dp_ijkdp_ijk
提出日時 2024-06-18 01:26:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,097 ms / 5,000 ms
コード長 707 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 328,760 KB
最終ジャッジ日時 2024-06-18 01:27:27
合計ジャッジ時間 26,542 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,068 KB
testcase_01 AC 42 ms
55,384 KB
testcase_02 AC 44 ms
54,308 KB
testcase_03 AC 479 ms
111,780 KB
testcase_04 AC 423 ms
111,140 KB
testcase_05 AC 395 ms
101,916 KB
testcase_06 AC 504 ms
113,408 KB
testcase_07 AC 581 ms
124,356 KB
testcase_08 AC 608 ms
125,576 KB
testcase_09 AC 605 ms
127,092 KB
testcase_10 AC 650 ms
128,616 KB
testcase_11 AC 687 ms
130,548 KB
testcase_12 AC 725 ms
130,536 KB
testcase_13 AC 736 ms
134,968 KB
testcase_14 AC 861 ms
138,816 KB
testcase_15 AC 894 ms
141,860 KB
testcase_16 AC 911 ms
148,132 KB
testcase_17 AC 905 ms
159,792 KB
testcase_18 AC 956 ms
200,140 KB
testcase_19 AC 953 ms
214,816 KB
testcase_20 AC 959 ms
234,248 KB
testcase_21 AC 1,097 ms
282,656 KB
testcase_22 AC 1,012 ms
308,584 KB
testcase_23 AC 940 ms
328,760 KB
testcase_24 AC 43 ms
54,180 KB
testcase_25 AC 776 ms
133,428 KB
testcase_26 AC 825 ms
136,064 KB
testcase_27 AC 935 ms
159,472 KB
testcase_28 AC 891 ms
144,188 KB
testcase_29 AC 931 ms
232,648 KB
testcase_30 AC 955 ms
151,688 KB
testcase_31 AC 672 ms
129,080 KB
testcase_32 AC 634 ms
124,964 KB
testcase_33 AC 586 ms
124,716 KB
testcase_34 AC 649 ms
128,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from collections import Counter
from math import gcd
N = int(input())
XY = [tuple(map(int, input().split())) for _ in range(N)]

d = defaultdict(Counter)
for i in range(N):
   x, y = XY[i]
   for j in range(i+1, N):
      a, b = XY[j]
      dx, dy = a-x, b-y
      if dx < 0:
         dx, dy = -(dx), -(dy)
      if dx == 0 and dy < 0:
         dy = -(dy)
      g = gcd(dx, dy)
      dx, dy = dx//g, dy//g
      center = (x+a, b+y)
      d[center][dx, dy] += 1

ans = 0
for center, C in d.items():
   for (dx, dy), cnt in C.items():
      if dy > 0:
         ndx, ndy = dy, -dx
      else:
         ndx, ndy = -dy, dx
      ans += cnt * C[ndx, ndy]

ans //= 2
print(ans)
0