結果

問題 No.1144 Triangles
ユーザー ayaoniayaoni
提出日時 2021-07-13 17:35:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,000 ms / 3,000 ms
コード長 1,149 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 81,140 KB
最終ジャッジ日時 2024-07-02 14:04:17
合計ジャッジ時間 26,182 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from math import sqrt
sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N = I()
points = [tuple(MI()) for _ in range(N)]
mod = 10**9+7

ans = 0
for i in range(N-2):
    x0,y0 = points[i]
    P = []
    for j in range(i+1,N):
        x1,y1 = points[j]
        x,y = x1-x0,y1-y0
        if x == y == 0:
            continue
        if y < 0:
            x,y = -x,-y
        cos = x/sqrt(x**2+y**2)
        P.append((cos,x,y))
    P.sort(reverse=True)

    M = len(P)
    sum_X = [0]*M
    sum_Y = [0]*M
    for j in range(1,M):
        c,x,y = P[j]
        sum_X[j] = sum_X[j-1]+x
        sum_Y[j] = sum_Y[j-1]+y

    for j in range(M):
        c,x,y = P[j]
        ans += x*(sum_Y[-1]-sum_Y[j])-y*(sum_X[-1]-sum_X[j])
        ans %= mod

print(ans)
0