結果

問題 No.2769 Number of Rhombi
ユーザー ニックネームニックネーム
提出日時 2024-05-31 22:27:25
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 677 bytes
コンパイル時間 815 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 136,988 KB
最終ジャッジ日時 2024-12-21 00:06:41
合計ジャッジ時間 188,530 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
129,980 KB
testcase_01 AC 41 ms
58,788 KB
testcase_02 AC 49 ms
136,988 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 39 ms
59,972 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
xy = [tuple(map(int,input().split())) for _ in range(n)]
s = set(xy); c = 0
for i in range(n-2):
    xi,yi = xy[i]
    for j in range(i+1,n-1):
        xj,yj = xy[j]
        for k in range(j+1,n):
            xk,yk = xy[k]
            t = {xy[i],xy[j],xy[k]}
            if (xi-xk)**2+(yi-yk)**2==(xj-xk)**2+(yj-yk)**2 and (xi+xj-xk,yi+yj-yk) in s and (xi+xj-xk,yi+yj-yk) not in t: c += 1
            if (xj-xi)**2+(yj-yi)**2==(xk-xi)**2+(yk-yi)**2 and (xj+xk-xi,yj+yk-yi) in s and (xj+xk-xi,yj+yk-yi) not in t: c += 1
            if (xk-xj)**2+(yk-yj)**2==(xi-xj)**2+(yi-yj)**2 and (xk+xi-xj,yk+yi-yj) in s and (xk+xi-xj,yk+yi-yj) not in t: c += 1
print(c//4)
0