結果

問題 No.1999 Lattice Teleportation
ユーザー MasKoaTSMasKoaTS
提出日時 2024-12-02 15:08:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 597 ms / 2,000 ms
コード長 784 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 89,568 KB
最終ジャッジ日時 2024-12-02 15:08:47
合計ジャッジ時間 11,366 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 46 ms
53,760 KB
testcase_05 AC 57 ms
67,072 KB
testcase_06 AC 57 ms
66,432 KB
testcase_07 AC 49 ms
62,208 KB
testcase_08 AC 40 ms
53,888 KB
testcase_09 AC 38 ms
52,608 KB
testcase_10 AC 37 ms
51,840 KB
testcase_11 AC 60 ms
68,224 KB
testcase_12 AC 463 ms
89,192 KB
testcase_13 AC 557 ms
89,196 KB
testcase_14 AC 38 ms
52,480 KB
testcase_15 AC 561 ms
89,564 KB
testcase_16 AC 320 ms
84,096 KB
testcase_17 AC 538 ms
87,548 KB
testcase_18 AC 458 ms
86,516 KB
testcase_19 AC 479 ms
87,312 KB
testcase_20 AC 559 ms
89,440 KB
testcase_21 AC 597 ms
89,568 KB
testcase_22 AC 581 ms
89,316 KB
testcase_23 AC 99 ms
77,440 KB
testcase_24 AC 213 ms
80,512 KB
testcase_25 AC 451 ms
86,196 KB
testcase_26 AC 408 ms
85,760 KB
testcase_27 AC 321 ms
84,352 KB
testcase_28 AC 546 ms
89,356 KB
testcase_29 AC 304 ms
82,048 KB
testcase_30 AC 152 ms
78,720 KB
testcase_31 AC 132 ms
77,952 KB
testcase_32 AC 350 ms
84,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from math import gcd
input = sys.stdin.readline
MOD = 10 ** 9 + 7

class Vector2:
    def __init__(self, x: int, y: int):
        self.x = x
        self.y = y

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

def area(v1: Vector2, v2: Vector2) -> int:
    return v1.x * v2.y - v1.y * v2.x


n = int(input())
vectors = []
for _ in [0] * n:
    x, y = map(int, input().split())
    if(x == 0 and y == 0):
        continue
    if(y < 0):
        x, y = -x, -y
    vectors.append(Vector2(x, y))
vectors.sort()

s, bh = 0, 0
lx, ly = 0, 0
for v in vectors:
    v1 = Vector2(lx, ly)
    v2 = Vector2(lx + v.x, ly + v.y)
    s += area(v1, v2) % MOD
    s %= MOD
    bh += gcd(v.x, v.y)
    bh %= MOD
    lx, ly = v2.x, v2.y

ans = (s + bh + 1) % MOD
print(ans)
0