結果

問題 No.849 yuki国の分割統治
ユーザー maspymaspy
提出日時 2020-03-18 12:52:51
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 1,015 bytes
コンパイル時間 750 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 35,264 KB
最終ジャッジ日時 2024-12-14 01:43:57
合計ジャッジ時間 6,490 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 32 ms
10,880 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 169 ms
34,964 KB
testcase_08 AC 171 ms
31,664 KB
testcase_09 AC 190 ms
32,860 KB
testcase_10 AC 187 ms
35,008 KB
testcase_11 AC 163 ms
30,604 KB
testcase_12 AC 175 ms
34,100 KB
testcase_13 AC 186 ms
33,912 KB
testcase_14 AC 177 ms
34,044 KB
testcase_15 AC 158 ms
30,344 KB
testcase_16 AC 198 ms
34,924 KB
testcase_17 AC 181 ms
34,920 KB
testcase_18 AC 197 ms
35,176 KB
testcase_19 AC 193 ms
35,172 KB
testcase_20 AC 198 ms
34,920 KB
testcase_21 AC 168 ms
35,176 KB
testcase_22 AC 198 ms
35,044 KB
testcase_23 AC 189 ms
34,916 KB
testcase_24 AC 187 ms
34,916 KB
testcase_25 AC 192 ms
35,264 KB
testcase_26 AC 31 ms
10,496 KB
testcase_27 AC 32 ms
10,752 KB
testcase_28 AC 30 ms
10,752 KB
testcase_29 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3.8
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from math import gcd

# %%
a, b, c, d = map(int, readline().split())
N = int(readline())
m = map(int, read().split())
X, Y = zip(*zip(m, m))


# %%
def fund_transform(a, b, c, d):
    while True:
        if a < c:
            a, c = c, a
            b, d = d, b
        if c == 0:
            if a == 0:
                b = abs(gcd(b, d))
                d = 0
            elif d == 0:
                pass
            else:
                d = abs(d)
                b %= d
            return a, b, c, d
        n = a // c
        a -= n * c
        b -= n * d


def calc_key(x, y):
    if not a:
        y %= b
        return b * x + y
    n = x // a
    x -= a * n
    y -= b * n
    if not d:
        return a * y + x
    y %= d
    return a * y + x


# %%
a, b, c, d = fund_transform(a, b, c, d)
keys = (calc_key(x, y) for x, y in zip(X, Y))
print(len(set(keys)))
0