結果

問題 No.1999 Lattice Teleportation
ユーザー tnodinotnodino
提出日時 2022-07-03 01:14:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 735 ms / 2,000 ms
コード長 707 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 88,492 KB
最終ジャッジ日時 2024-11-28 01:20:23
合計ジャッジ時間 13,996 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
51,840 KB
testcase_01 AC 43 ms
52,096 KB
testcase_02 AC 44 ms
51,840 KB
testcase_03 AC 44 ms
52,096 KB
testcase_04 AC 49 ms
54,272 KB
testcase_05 AC 77 ms
69,632 KB
testcase_06 AC 75 ms
68,992 KB
testcase_07 AC 63 ms
63,232 KB
testcase_08 AC 48 ms
53,376 KB
testcase_09 AC 43 ms
52,096 KB
testcase_10 AC 42 ms
52,096 KB
testcase_11 AC 80 ms
70,656 KB
testcase_12 AC 554 ms
88,228 KB
testcase_13 AC 733 ms
87,296 KB
testcase_14 AC 44 ms
52,352 KB
testcase_15 AC 725 ms
88,100 KB
testcase_16 AC 419 ms
83,200 KB
testcase_17 AC 672 ms
86,708 KB
testcase_18 AC 595 ms
86,116 KB
testcase_19 AC 650 ms
86,748 KB
testcase_20 AC 725 ms
88,492 KB
testcase_21 AC 724 ms
87,892 KB
testcase_22 AC 735 ms
87,724 KB
testcase_23 AC 142 ms
76,544 KB
testcase_24 AC 288 ms
80,256 KB
testcase_25 AC 593 ms
85,944 KB
testcase_26 AC 494 ms
84,992 KB
testcase_27 AC 423 ms
83,072 KB
testcase_28 AC 701 ms
87,580 KB
testcase_29 AC 362 ms
81,664 KB
testcase_30 AC 216 ms
78,464 KB
testcase_31 AC 187 ms
78,080 KB
testcase_32 AC 464 ms
83,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
mod = 10**9+7
class Point:
    def __init__(self, px, py):
        self.px = px
        self.py = py

    def __lt__(self, other):
        return crs(self, other) > 0

def crs(p1, p2):
    return p1.px * p2.py - p1.py * p2.px

N = int(input())
vec = []
for _ in range(N):
    A,B = map(int,input().split())
    if A == 0 and B == 0:
        continue
    if B < 0:
        A *= -1
        B *= -1
    vec.append(Point(A, B))
vec.sort()

EdgePoint = 0
Area = 0
x,y = 0,0
for v in vec:
    a = Point(x, y)
    b = Point(x+v.px, y+v.py)
    Area += crs(a, b)
    Area %= mod
    EdgePoint += gcd(v.px, v.py)
    EdgePoint %= mod
    x = b.px
    y = b.py
print((Area + EdgePoint + 1) % mod)
0