結果

問題 No.1999 Lattice Teleportation
ユーザー MasKoaTSMasKoaTS
提出日時 2022-02-21 21:46:45
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,230 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 92,760 KB
最終ジャッジ日時 2024-11-08 11:05:00
合計ジャッジ時間 14,420 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
55,424 KB
testcase_01 AC 50 ms
55,552 KB
testcase_02 RE -
testcase_03 AC 52 ms
55,680 KB
testcase_04 AC 63 ms
63,104 KB
testcase_05 AC 83 ms
71,808 KB
testcase_06 AC 80 ms
71,040 KB
testcase_07 AC 71 ms
67,328 KB
testcase_08 AC 64 ms
62,976 KB
testcase_09 AC 51 ms
55,552 KB
testcase_10 AC 51 ms
55,168 KB
testcase_11 AC 85 ms
73,856 KB
testcase_12 AC 644 ms
92,760 KB
testcase_13 AC 953 ms
92,588 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 514 ms
86,400 KB
testcase_17 AC 791 ms
91,460 KB
testcase_18 AC 739 ms
89,720 KB
testcase_19 AC 762 ms
90,544 KB
testcase_20 AC 979 ms
92,720 KB
testcase_21 AC 977 ms
92,308 KB
testcase_22 AC 989 ms
92,344 KB
testcase_23 AC 175 ms
78,848 KB
testcase_24 AC 350 ms
82,944 KB
testcase_25 AC 701 ms
89,860 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#嘘解法

from functools import cmp_to_key
from math import gcd
import sys
input = sys.stdin.readline
mod = 10 ** 9 + 7
rev2 = pow(2, mod - 2, mod)

def floor_sum(n, m, a, b):
	res = 0
	while(True):
		if(a >= m or a < 0):
			res += n * (n - 1) * (a // m) // 2
			a %= m
		if(b >= m or b < 0):
			res += n * (b // m)
			b %= m
		y_max = a * n + b
		if(y_max < m):
			break
		n, b, m, a = y_max // m, y_max % m, a, m
	return res   

def arg_sort(v1, v2):
	x1, y1 = v1
	x2, y2 = v2
	if(x1 * y2 == x2 * y1):
		return 0
	elif(x1 * y2 - x2 * y1 < 0):
		return 1
	else:
		return -1

n = int(input())
v = []
for _ in [0] * n:
	x, y = map(int, input().split())
	if(y < 0):
		x = -x;		y = -y
	v.append((x, y))
v.sort(key = cmp_to_key(arg_sort))

if(n == 1):
	print((gcd(v[0][0], v[0][1]) + 1) % mod)
	exit(0)

ans = 1
for x, y in v:
	ans += gcd(abs(x), y)
	ans %= mod

last = 0
for x, y in v[::-1]:
	a = 1
	s = 0
	if(x < 0):
		a = -1
		x = -x
	s += floor_sum(x, x, y, x * last) % mod
	s %= mod
	ans += mod + a * s
	ans %= mod
	last += y
	last %= mod

last = 0
for x, y in v:
	a = -1
	s = 0
	if(x < 0):
		a = 1
		x = -x
	s += floor_sum(x, x, y, x * last) % mod
	s %= mod
	ans += mod + a * s
	ans %= mod
	last += y
	last %= mod

print(ans)
0