結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,180 KB
testcase_01 AC 45 ms
54,368 KB
testcase_02 AC 45 ms
60,220 KB
testcase_03 AC 2,044 ms
279,000 KB
testcase_04 AC 2,363 ms
290,352 KB
testcase_05 AC 1,456 ms
214,972 KB
testcase_06 AC 2,002 ms
253,572 KB
testcase_07 AC 2,433 ms
277,724 KB
testcase_08 AC 2,383 ms
277,008 KB
testcase_09 AC 2,357 ms
275,636 KB
testcase_10 AC 2,467 ms
276,396 KB
testcase_11 AC 2,478 ms
276,356 KB
testcase_12 AC 2,474 ms
277,744 KB
testcase_13 AC 2,457 ms
276,116 KB
testcase_14 AC 2,436 ms
277,748 KB
testcase_15 AC 2,404 ms
276,856 KB
testcase_16 AC 2,461 ms
277,392 KB
testcase_17 AC 2,351 ms
276,828 KB
testcase_18 AC 2,311 ms
277,728 KB
testcase_19 AC 2,320 ms
277,736 KB
testcase_20 AC 2,348 ms
278,124 KB
testcase_21 AC 2,383 ms
277,472 KB
testcase_22 AC 2,470 ms
277,864 KB
testcase_23 AC 2,298 ms
277,100 KB
testcase_24 AC 43 ms
53,800 KB
testcase_25 AC 2,409 ms
277,044 KB
testcase_26 AC 2,369 ms
277,356 KB
testcase_27 AC 2,368 ms
277,676 KB
testcase_28 AC 2,389 ms
276,788 KB
testcase_29 AC 2,437 ms
278,084 KB
testcase_30 AC 2,447 ms
277,720 KB
testcase_31 AC 2,407 ms
276,292 KB
testcase_32 AC 2,338 ms
276,088 KB
testcase_33 AC 2,371 ms
276,244 KB
testcase_34 AC 2,276 ms
274,992 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