結果

問題 No.2769 Number of Rhombi
ユーザー nikoro256nikoro256
提出日時 2024-06-01 00:36:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,766 ms / 5,000 ms
コード長 1,041 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 290,524 KB
最終ジャッジ日時 2024-12-21 02:21:33
合計ジャッジ時間 81,787 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
53,548 KB
testcase_01 AC 48 ms
53,296 KB
testcase_02 AC 51 ms
59,748 KB
testcase_03 AC 2,259 ms
279,200 KB
testcase_04 AC 2,608 ms
290,524 KB
testcase_05 AC 1,608 ms
215,036 KB
testcase_06 AC 2,176 ms
253,560 KB
testcase_07 AC 2,634 ms
277,804 KB
testcase_08 AC 2,596 ms
276,840 KB
testcase_09 AC 2,513 ms
275,700 KB
testcase_10 AC 2,685 ms
276,268 KB
testcase_11 AC 2,720 ms
276,148 KB
testcase_12 AC 2,550 ms
277,388 KB
testcase_13 AC 2,633 ms
276,608 KB
testcase_14 AC 2,662 ms
277,736 KB
testcase_15 AC 2,547 ms
276,768 KB
testcase_16 AC 2,703 ms
277,504 KB
testcase_17 AC 2,631 ms
276,820 KB
testcase_18 AC 2,583 ms
278,244 KB
testcase_19 AC 2,523 ms
277,632 KB
testcase_20 AC 2,596 ms
278,112 KB
testcase_21 AC 2,636 ms
277,576 KB
testcase_22 AC 2,766 ms
278,036 KB
testcase_23 AC 2,523 ms
277,020 KB
testcase_24 AC 50 ms
54,868 KB
testcase_25 AC 2,645 ms
276,972 KB
testcase_26 AC 2,598 ms
277,160 KB
testcase_27 AC 2,638 ms
277,704 KB
testcase_28 AC 2,635 ms
276,732 KB
testcase_29 AC 2,584 ms
277,972 KB
testcase_30 AC 2,651 ms
277,520 KB
testcase_31 AC 2,680 ms
276,360 KB
testcase_32 AC 2,567 ms
276,500 KB
testcase_33 AC 2,579 ms
276,220 KB
testcase_34 AC 2,488 ms
275,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


def extgcd(a, b):
    if b:
        d, y, x = extgcd(b, a % b)
        y -= (a // b) * x
        return d, x, y
    return a, 1, 0


# 以下modinv
def mod_inv(a, m):
    g, x, y = extgcd(a, m)

    if g != 1:
        raise Exception()

    if x < 0:
        x += m

    return x


p = 998244353
N = int(input())
dat = []
for _ in range(N):
    dat.append(tuple(map(int, input().split())))
dat_set = set(dat)

ans = 0
dic = defaultdict(int)
for i in range(N):
    for j in range(i + 1, N):
        x, y = dat[i]
        x2, y2 = dat[j]
        if x2 - x != 0 and y2 - y != 0:
            mid = (x + x2, y + y2, (x2 - x) * mod_inv(y2 - y, p) % p)
            mid_rev = (x + x2, y + y2, (y - y2) * mod_inv(x2 - x, p) % p)
        elif x2 - x == 0:
            mid = (x + x2, y + y2, p + 1)
            mid_rev = (x + x2, y + y2, -1)
        elif y2 - y == 0:
            mid = (x + x2, y + y2, -1)
            mid_rev = (x + x2, y + y2, p + 1)
        dic[mid] += 1
        ans += dic[mid_rev]
print(ans)
0