結果

問題 No.849 yuki国の分割統治
ユーザー titiatitia
提出日時 2019-07-12 07:11:38
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 773 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 49,952 KB
最終ジャッジ日時 2024-10-07 01:48:04
合計ジャッジ時間 7,517 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 31 ms
11,008 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 RE -
testcase_08 AC 277 ms
40,192 KB
testcase_09 AC 290 ms
42,240 KB
testcase_10 AC 309 ms
42,240 KB
testcase_11 AC 264 ms
38,016 KB
testcase_12 AC 292 ms
37,632 KB
testcase_13 AC 309 ms
43,648 KB
testcase_14 AC 283 ms
38,912 KB
testcase_15 AC 256 ms
38,528 KB
testcase_16 AC 309 ms
46,336 KB
testcase_17 AC 304 ms
43,904 KB
testcase_18 AC 310 ms
46,336 KB
testcase_19 AC 319 ms
44,544 KB
testcase_20 AC 319 ms
46,464 KB
testcase_21 AC 289 ms
37,504 KB
testcase_22 AC 311 ms
46,336 KB
testcase_23 AC 310 ms
46,464 KB
testcase_24 AC 298 ms
44,416 KB
testcase_25 AC 305 ms
49,952 KB
testcase_26 AC 32 ms
10,880 KB
testcase_27 AC 30 ms
10,752 KB
testcase_28 AC 31 ms
10,752 KB
testcase_29 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math

input = sys.stdin.readline

def lcm(a,b):
    return a*b//math.gcd(a,b)

a,b,c,d=map(int,input().split())
N=int(input())
P=[list(map(int,input().split())) for i in range(N)]


if a*d-b*c==0:
    a1=math.gcd(a,c)
    b1=b//(a//a1)

    def rep_point(p,q):
        k=p//a1

        return p-k*a1,q-k*b1

    Q=[rep_point(P[i][0],P[i][1]) for i in range(N)]

    print(len(set(Q)))
    sys.exit()

x = lcm(a,c)

if a==0:
    t=abs(b)
    a,b=c,d
    
    
else:

    while c!=0:
        if a>c:
            a,b,c,d=c,d,a,b
            
        r,q=divmod(c,a)
        c,d=q,d-b*r

    t = abs(d)   

def rep_point(p,q):
    k=p//a

    p-=k*a
    q-=k*b

    q=q%t

    return p,q

Q=[rep_point(P[i][0],P[i][1]) for i in range(N)]

print(len(set(Q)))

0