結果

問題 No.849 yuki国の分割統治
ユーザー convexineqconvexineq
提出日時 2021-09-20 09:13:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 428 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 99,200 KB
最終ジャッジ日時 2024-07-02 12:55:39
合計ジャッジ時間 5,104 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 38 ms
52,608 KB
testcase_04 AC 42 ms
52,352 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 125 ms
86,528 KB
testcase_08 AC 118 ms
88,704 KB
testcase_09 AC 123 ms
87,040 KB
testcase_10 AC 131 ms
86,912 KB
testcase_11 AC 122 ms
86,528 KB
testcase_12 AC 119 ms
86,228 KB
testcase_13 AC 124 ms
88,704 KB
testcase_14 AC 132 ms
87,680 KB
testcase_15 AC 115 ms
88,448 KB
testcase_16 AC 138 ms
96,384 KB
testcase_17 AC 125 ms
86,140 KB
testcase_18 AC 143 ms
96,488 KB
testcase_19 AC 128 ms
87,296 KB
testcase_20 AC 138 ms
93,084 KB
testcase_21 AC 122 ms
86,656 KB
testcase_22 AC 138 ms
94,592 KB
testcase_23 AC 136 ms
93,520 KB
testcase_24 AC 128 ms
87,168 KB
testcase_25 AC 135 ms
99,200 KB
testcase_26 AC 37 ms
52,096 KB
testcase_27 AC 37 ms
52,224 KB
testcase_28 AC 37 ms
52,096 KB
testcase_29 AC 37 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
import sys
readline = sys.stdin.readline

a,b,c,d = map(int,readline().split())
n = int(input())
xy = [list(map(int,readline().split())) for _ in range(n)]
D = a*d - b*c
if D:
    s = set(((d*x-c*y)%D, (a*y-b*x)%D) for x,y in xy)
    print(len(s))
    exit()
p,q = (gcd(a,c), b//(a//gcd(a,c))) if a else (a//(b//gcd(b,d)), gcd(b,d))
s = set((p*y-q*x,x%p) if p else (p*y-q*x,y%q) for x,y in xy)
print(len(s))
0