結果

問題 No.849 yuki国の分割統治
ユーザー mkawa2mkawa2
提出日時 2019-07-06 21:09:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 537 ms / 2,000 ms
コード長 522 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 45,312 KB
最終ジャッジ日時 2024-10-07 00:01:44
合計ジャッジ時間 11,116 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 430 ms
31,104 KB
testcase_08 AC 446 ms
39,040 KB
testcase_09 AC 482 ms
42,240 KB
testcase_10 AC 506 ms
44,032 KB
testcase_11 AC 418 ms
37,760 KB
testcase_12 AC 475 ms
41,216 KB
testcase_13 AC 510 ms
42,624 KB
testcase_14 AC 479 ms
42,624 KB
testcase_15 AC 421 ms
37,504 KB
testcase_16 AC 528 ms
44,928 KB
testcase_17 AC 487 ms
45,184 KB
testcase_18 AC 537 ms
45,184 KB
testcase_19 AC 509 ms
45,312 KB
testcase_20 AC 527 ms
45,184 KB
testcase_21 AC 475 ms
41,984 KB
testcase_22 AC 523 ms
45,184 KB
testcase_23 AC 523 ms
45,184 KB
testcase_24 AC 495 ms
45,184 KB
testcase_25 AC 537 ms
45,056 KB
testcase_26 AC 30 ms
10,368 KB
testcase_27 AC 30 ms
10,752 KB
testcase_28 AC 30 ms
10,624 KB
testcase_29 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b, c, d = map(int, input().split())
n = int(input())
xy = [list(map(int, input().split())) for _ in range(n)]
# 横移動
if a == c == 0:
    while b > 0:
        d, b = b, d % b
else:
    if a < c:
        a, b, c, d = c, d, a, b
    while c > 0:
        r = a // c
        a, b, c, d = c, d, a - r * c, b - r * d
    d = abs(d)
    xy=[[x % a, y - b * (x // a)] for x,y in xy]
ki = set()
# 縦移動
if d:
    for x, y in xy:
        ki.add((x, y % d))
else:
    for x, y in xy:
        ki.add((x, y))
print(len(ki))
0