結果

問題 No.1999 Lattice Teleportation
ユーザー tnodinotnodino
提出日時 2022-07-03 01:14:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 641 ms / 2,000 ms
コード長 707 bytes
コンパイル時間 1,548 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 88,648 KB
最終ジャッジ日時 2024-05-06 00:02:37
合計ジャッジ時間 13,885 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,480 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 36 ms
52,480 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 43 ms
54,528 KB
testcase_05 AC 69 ms
69,632 KB
testcase_06 AC 68 ms
68,608 KB
testcase_07 AC 58 ms
63,744 KB
testcase_08 AC 43 ms
53,760 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 AC 36 ms
51,968 KB
testcase_11 AC 72 ms
71,424 KB
testcase_12 AC 487 ms
88,108 KB
testcase_13 AC 638 ms
88,136 KB
testcase_14 AC 38 ms
52,096 KB
testcase_15 AC 635 ms
88,224 KB
testcase_16 AC 357 ms
83,072 KB
testcase_17 AC 579 ms
87,344 KB
testcase_18 AC 545 ms
86,368 KB
testcase_19 AC 567 ms
86,880 KB
testcase_20 AC 626 ms
88,500 KB
testcase_21 AC 639 ms
87,956 KB
testcase_22 AC 641 ms
88,648 KB
testcase_23 AC 123 ms
77,440 KB
testcase_24 AC 250 ms
81,280 KB
testcase_25 AC 508 ms
86,448 KB
testcase_26 AC 426 ms
84,352 KB
testcase_27 AC 367 ms
82,944 KB
testcase_28 AC 591 ms
87,852 KB
testcase_29 AC 326 ms
82,176 KB
testcase_30 AC 180 ms
78,592 KB
testcase_31 AC 157 ms
78,464 KB
testcase_32 AC 398 ms
84,096 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