結果

問題 No.1999 Lattice Teleportation
ユーザー MasKoaTSMasKoaTS
提出日時 2022-06-23 18:35:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 749 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 89,948 KB
最終ジャッジ日時 2024-11-08 11:10:27
合計ジャッジ時間 13,013 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,480 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 42 ms
53,504 KB
testcase_05 AC 64 ms
66,048 KB
testcase_06 AC 62 ms
65,280 KB
testcase_07 AC 55 ms
61,184 KB
testcase_08 AC 46 ms
53,632 KB
testcase_09 AC 43 ms
52,224 KB
testcase_10 AC 42 ms
52,096 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 709 ms
89,452 KB
testcase_14 AC 43 ms
52,480 KB
testcase_15 AC 788 ms
89,480 KB
testcase_16 AC 449 ms
83,968 KB
testcase_17 AC 710 ms
87,668 KB
testcase_18 AC 605 ms
86,528 KB
testcase_19 AC 606 ms
87,060 KB
testcase_20 AC 700 ms
89,568 KB
testcase_21 AC 704 ms
89,512 KB
testcase_22 AC 722 ms
89,948 KB
testcase_23 AC 122 ms
77,440 KB
testcase_24 AC 269 ms
80,512 KB
testcase_25 AC 576 ms
86,960 KB
testcase_26 AC 467 ms
86,272 KB
testcase_27 AC 409 ms
83,968 KB
testcase_28 AC 660 ms
89,392 KB
testcase_29 AC 335 ms
82,944 KB
testcase_30 AC 179 ms
79,104 KB
testcase_31 AC 165 ms
78,080 KB
testcase_32 AC 431 ms
85,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# WA

from math import gcd, atan2
import sys
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 atan2(self.y, self.x) < atan2(other.y, other.x)

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


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

S, bh = 0, 0
lx, ly = 0, 0
for v in vector:
	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