結果

問題 No.849 yuki国の分割統治
ユーザー H3PO4H3PO4
提出日時 2021-02-25 12:30:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 642 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 40,348 KB
最終ジャッジ日時 2024-09-25 10:56:45
合計ジャッジ時間 7,002 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 33 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 WA -
testcase_08 AC 253 ms
29,016 KB
testcase_09 AC 262 ms
28,036 KB
testcase_10 AC 276 ms
25,856 KB
testcase_11 AC 244 ms
26,848 KB
testcase_12 AC 262 ms
25,088 KB
testcase_13 AC 274 ms
29,068 KB
testcase_14 AC 271 ms
26,496 KB
testcase_15 AC 244 ms
28,092 KB
testcase_16 AC 286 ms
35,344 KB
testcase_17 AC 292 ms
24,320 KB
testcase_18 AC 293 ms
34,912 KB
testcase_19 AC 292 ms
26,496 KB
testcase_20 AC 315 ms
31,844 KB
testcase_21 AC 259 ms
24,064 KB
testcase_22 AC 312 ms
33,372 KB
testcase_23 AC 317 ms
32,476 KB
testcase_24 AC 281 ms
25,984 KB
testcase_25 AC 291 ms
40,348 KB
testcase_26 AC 30 ms
10,624 KB
testcase_27 AC 31 ms
10,752 KB
testcase_28 AC 30 ms
10,752 KB
testcase_29 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from math import gcd

input = sys.stdin.buffer.readline

A, B, C, D = map(int, input().split())
N = int(input())
XY = [tuple(map(int, input().split())) for _ in range(N)]

det = A * D - B * C

st = set()
if det:
    for X, Y in XY:
        st.add(((D * X - C * Y) % det,
                (-B * X + A * Y) % det))
else:
    gAC = gcd(A, C)
    gBD = gcd(B, D)

    if not gAC:
        for X, Y in XY:
            st.add((X, 0))
    elif not gBD:
        for X, Y in XY:
            st.add((0, Y))
    else:
        for X, Y in XY:
            M = min(X // gAC, Y // gBD)
            st.add((X - M * gAC, Y - M * gBD))
print(len(st))
0