結果
問題 | No.1999 Lattice Teleportation |
ユーザー | MasKoaTS |
提出日時 | 2022-02-21 23:02:36 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,215 bytes |
コンパイル時間 | 301 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 93,112 KB |
最終ジャッジ日時 | 2024-11-08 11:05:29 |
合計ジャッジ時間 | 16,494 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
55,424 KB |
testcase_01 | AC | 54 ms
54,912 KB |
testcase_02 | AC | 52 ms
54,912 KB |
testcase_03 | AC | 52 ms
55,552 KB |
testcase_04 | AC | 64 ms
63,104 KB |
testcase_05 | AC | 83 ms
71,808 KB |
testcase_06 | AC | 80 ms
71,296 KB |
testcase_07 | AC | 72 ms
67,200 KB |
testcase_08 | AC | 63 ms
62,848 KB |
testcase_09 | AC | 52 ms
55,552 KB |
testcase_10 | AC | 53 ms
55,552 KB |
testcase_11 | AC | 85 ms
73,600 KB |
testcase_12 | AC | 659 ms
93,112 KB |
testcase_13 | AC | 976 ms
91,824 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 513 ms
86,144 KB |
testcase_17 | AC | 815 ms
91,456 KB |
testcase_18 | AC | 750 ms
90,152 KB |
testcase_19 | AC | 767 ms
90,360 KB |
testcase_20 | AC | 996 ms
92,348 KB |
testcase_21 | AC | 1,011 ms
92,180 KB |
testcase_22 | AC | 1,000 ms
92,348 KB |
testcase_23 | AC | 178 ms
78,720 KB |
testcase_24 | AC | 363 ms
83,200 KB |
testcase_25 | AC | 733 ms
90,476 KB |
testcase_26 | AC | 612 ms
86,836 KB |
testcase_27 | AC | 524 ms
86,656 KB |
testcase_28 | AC | 836 ms
92,064 KB |
testcase_29 | AC | 441 ms
84,224 KB |
testcase_30 | AC | 261 ms
80,128 KB |
testcase_31 | AC | 230 ms
79,872 KB |
testcase_32 | AC | 577 ms
86,784 KB |
ソースコード
from functools import cmp_to_key from math import gcd import sys input = sys.stdin.readline mod = 10 ** 9 + 7 def floor_sum(n, m, a, b): if(m == 0): return 0 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)