結果

問題 No.2769 Number of Rhombi
ユーザー ああいいああいい
提出日時 2024-06-01 17:09:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,299 ms / 5,000 ms
コード長 1,056 bytes
コンパイル時間 782 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 347,912 KB
最終ジャッジ日時 2024-12-22 03:50:53
合計ジャッジ時間 57,651 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,680 KB
testcase_01 AC 44 ms
54,316 KB
testcase_02 AC 44 ms
54,532 KB
testcase_03 AC 1,301 ms
252,704 KB
testcase_04 AC 1,264 ms
251,096 KB
testcase_05 AC 1,302 ms
201,252 KB
testcase_06 AC 1,501 ms
240,628 KB
testcase_07 AC 1,854 ms
276,508 KB
testcase_08 AC 1,823 ms
306,780 KB
testcase_09 AC 1,811 ms
273,360 KB
testcase_10 AC 1,877 ms
291,568 KB
testcase_11 AC 1,774 ms
294,564 KB
testcase_12 AC 1,834 ms
297,808 KB
testcase_13 AC 1,862 ms
303,868 KB
testcase_14 AC 1,906 ms
300,644 KB
testcase_15 AC 1,881 ms
305,644 KB
testcase_16 AC 1,746 ms
306,348 KB
testcase_17 AC 1,470 ms
319,644 KB
testcase_18 AC 2,093 ms
343,500 KB
testcase_19 AC 2,299 ms
347,912 KB
testcase_20 AC 1,631 ms
308,232 KB
testcase_21 AC 2,021 ms
337,152 KB
testcase_22 AC 2,125 ms
291,932 KB
testcase_23 AC 1,507 ms
308,304 KB
testcase_24 AC 44 ms
54,268 KB
testcase_25 AC 1,943 ms
306,184 KB
testcase_26 AC 1,826 ms
310,420 KB
testcase_27 AC 1,620 ms
306,080 KB
testcase_28 AC 1,696 ms
306,472 KB
testcase_29 AC 2,016 ms
322,124 KB
testcase_30 AC 1,892 ms
322,844 KB
testcase_31 AC 1,898 ms
321,884 KB
testcase_32 AC 1,829 ms
270,652 KB
testcase_33 AC 1,845 ms
271,484 KB
testcase_34 AC 1,603 ms
279,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

point = []
for _ in range(N):
    x,y = map(int,input().split())
    point.append((x,y))

def gcd(a,b):
    if b == 0:return a
    r = a % b
    a = b
    b = r
    return gcd(a,b)

from collections import defaultdict
d1 = defaultdict(int)
d2 = defaultdict(int)

ans = 0

for i in range(N):
    x,y = point[i]
    for j in range(i + 1,N):
        xx,yy = point[j]

        if xx == x:
            u = (0,1)
        elif yy == y:
            u = (1,0)
        elif xx > x:
            a = xx - x
            b = yy - y
            t = gcd(a,b if b > 0 else -b)
            u = (a // t,b // t)
        else:
            a = x - xx
            b = y - yy
            t = gcd(a,b if b > 0 else -b)
            u = (a // t,b // t)
        v = (x + xx,y + yy)

        """
        ans += d1[v]
        ans -= d2[(v,u)]
        d1[v] += 1
        d2[(v,u)] += 1
        """

        m,mm = u
        uu = (-mm,m)
        uuu = (mm,-m)
        ans += d2[(v,uu)]
        ans += d2[(v,uuu)]
        d2[(v,u)] += 1
        
print(ans)
#print(d1,d2)
0