結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 29 ms
10,752 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 WA -
testcase_07 WA -
testcase_08 AC 261 ms
29,024 KB
testcase_09 AC 267 ms
28,288 KB
testcase_10 AC 280 ms
25,984 KB
testcase_11 AC 239 ms
27,092 KB
testcase_12 AC 259 ms
25,088 KB
testcase_13 AC 278 ms
29,076 KB
testcase_14 AC 265 ms
26,624 KB
testcase_15 AC 244 ms
27,956 KB
testcase_16 AC 284 ms
35,344 KB
testcase_17 AC 281 ms
24,320 KB
testcase_18 AC 292 ms
35,040 KB
testcase_19 AC 288 ms
26,624 KB
testcase_20 AC 309 ms
31,840 KB
testcase_21 AC 247 ms
24,192 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 296 ms
40,316 KB
testcase_26 AC 29 ms
10,752 KB
testcase_27 AC 29 ms
10,752 KB
testcase_28 AC 29 ms
10,752 KB
testcase_29 AC 29 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:
    INF = 10 ** 9 + 5
    gAC = gcd(A, C)
    gBD = gcd(B, D)
    if not gAC: gAC = INF
    if not gBD: gBD = INF
    for X, Y in XY:
        st.add((X % gAC, X % gBD))
print(len(st))
0