結果

問題 No.849 yuki国の分割統治
ユーザー kimiyukikimiyuki
提出日時 2019-07-05 23:50:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 422 ms / 2,000 ms
コード長 753 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 40,188 KB
最終ジャッジ日時 2024-10-06 23:24:08
合計ジャッジ時間 9,185 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,752 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 388 ms
25,216 KB
testcase_08 AC 357 ms
28,388 KB
testcase_09 AC 376 ms
27,852 KB
testcase_10 AC 399 ms
25,728 KB
testcase_11 AC 334 ms
26,112 KB
testcase_12 AC 371 ms
24,704 KB
testcase_13 AC 394 ms
28,592 KB
testcase_14 AC 379 ms
25,472 KB
testcase_15 AC 334 ms
27,388 KB
testcase_16 AC 408 ms
34,300 KB
testcase_17 AC 379 ms
24,320 KB
testcase_18 AC 416 ms
34,808 KB
testcase_19 AC 394 ms
26,368 KB
testcase_20 AC 414 ms
31,736 KB
testcase_21 AC 370 ms
24,064 KB
testcase_22 AC 415 ms
33,272 KB
testcase_23 AC 414 ms
32,372 KB
testcase_24 AC 392 ms
25,984 KB
testcase_25 AC 422 ms
40,188 KB
testcase_26 AC 31 ms
10,752 KB
testcase_27 AC 30 ms
10,624 KB
testcase_28 AC 30 ms
10,624 KB
testcase_29 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import math

def gcd2(a, b, c, d):
    while a:
        k = c // a
        a, c = c - k * a, a
        b, d = d - k * b, b
    return a, b, c, d


def solve(a, b, c, d, n, p):
    a, b, c, d = gcd2(a, b, c, d)
    assert a == 0

    found = set()
    for x, y in p:
        if c:
            k = x // c
            x1 = x - k * c
            y1 = y - k * d
            if b:
                y1 %= b
        else:
            x1 = x
            y1 = y % math.gcd(b, d)
        found.add((x1, y1))
    return len(found)

def main():
    a, b, c, d = map(int, input().split())
    n = int(input())
    p = [tuple(map(int, input().split())) for _ in range(n)]
    print(solve(a, b, c, d, n, p))

if __name__ == '__main__':
    main()
0