結果

問題 No.849 yuki国の分割統治
ユーザー brthyyjpbrthyyjp
提出日時 2021-11-12 11:11:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 733 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 92,612 KB
最終ジャッジ日時 2024-11-24 20:12:46
合計ジャッジ時間 6,082 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 32 ms
52,736 KB
testcase_02 AC 34 ms
52,352 KB
testcase_03 AC 32 ms
52,480 KB
testcase_04 AC 36 ms
52,352 KB
testcase_05 AC 35 ms
52,096 KB
testcase_06 AC 34 ms
51,968 KB
testcase_07 AC 133 ms
81,492 KB
testcase_08 AC 130 ms
84,812 KB
testcase_09 AC 132 ms
82,768 KB
testcase_10 AC 134 ms
82,380 KB
testcase_11 AC 124 ms
82,380 KB
testcase_12 AC 123 ms
81,224 KB
testcase_13 AC 128 ms
83,784 KB
testcase_14 AC 141 ms
82,124 KB
testcase_15 AC 112 ms
83,152 KB
testcase_16 AC 134 ms
90,960 KB
testcase_17 AC 121 ms
81,224 KB
testcase_18 AC 133 ms
90,700 KB
testcase_19 AC 126 ms
82,124 KB
testcase_20 AC 131 ms
86,748 KB
testcase_21 AC 118 ms
81,352 KB
testcase_22 AC 134 ms
89,172 KB
testcase_23 AC 135 ms
88,460 KB
testcase_24 AC 127 ms
81,488 KB
testcase_25 AC 129 ms
92,612 KB
testcase_26 AC 33 ms
52,480 KB
testcase_27 AC 35 ms
52,480 KB
testcase_28 AC 34 ms
52,096 KB
testcase_29 AC 33 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b, c, d  = map(int, input().split())
n = int(input())
XY = []
for i in range(n):
    x, y = map(int, input().split())
    XY.append((x, y))

import math
det = a*d-b*c
S = set()
if det == 0:
    g1 = math.gcd(a, c)
    g2 = math.gcd(b, d)
    for x, y in XY:
        if g1 != 0 and g2 != 0:
            q = min(x//g1, y//g2)
            x = x-q*g1
            y = y-q*g2
            S.add((x, y))
        elif g1 == 0:
            q = y//g2
            y = y-q*g2
            S.add((x, y))
        elif g2 == 0:
            q = x//g1
            x = x-q*g1
            S.add((x, y))
else:
    det = abs(det)
    S = set()
    for x, y in XY:
        z = (d*x-c*y)%det
        w = (-b*x+a*y)%det
        S.add((z, w))
print(len(S))
0