結果

問題 No.849 yuki国の分割統治
ユーザー chocoruskchocorusk
提出日時 2019-03-30 06:33:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 493 ms / 2,000 ms
コード長 768 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 26,676 KB
最終ジャッジ日時 2024-10-06 21:00:04
合計ジャッジ時間 10,305 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 422 ms
12,032 KB
testcase_08 AC 412 ms
16,872 KB
testcase_09 AC 431 ms
15,720 KB
testcase_10 AC 445 ms
12,288 KB
testcase_11 AC 387 ms
15,232 KB
testcase_12 AC 431 ms
11,648 KB
testcase_13 AC 458 ms
15,808 KB
testcase_14 AC 428 ms
12,800 KB
testcase_15 AC 382 ms
16,608 KB
testcase_16 AC 484 ms
20,916 KB
testcase_17 AC 422 ms
10,880 KB
testcase_18 AC 477 ms
21,428 KB
testcase_19 AC 475 ms
12,928 KB
testcase_20 AC 474 ms
18,356 KB
testcase_21 AC 416 ms
10,752 KB
testcase_22 AC 443 ms
19,892 KB
testcase_23 AC 463 ms
18,996 KB
testcase_24 AC 424 ms
12,544 KB
testcase_25 AC 493 ms
26,676 KB
testcase_26 AC 31 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 #

a=list(map(int, input().split()))
def extgcd(a):
    if a[2]==0:
        return
    q=a[0]//a[2]
    a[0]-=a[2]*q
    a[1]-=a[3]*q
    a[0], a[2]=a[2], a[0]
    a[1], a[3]=a[3], a[1]
    extgcd(a)
sw=0
if a[0]==0 and a[2]==0:
    sw=1
    a[0], a[1]=a[1], a[0]
    a[2], a[3]=a[3], a[2]
extgcd(a)
n=int(input())
if a[3]==0:
    s=set()
    for i in range(n):
        x, y=map(int, input().split())
        if sw==1:
            x, y=y, x
        q=x//a[0]
        x-=a[0]*q
        y-=a[1]*q
        s.add((x, y))
    print(len(s))
else:
    if a[3]<0:
        a[3]=-a[3]
    s=set()
    for i in range(n):
        x, y=map(int, input().split())
        q=x//a[0]
        x-=a[0]*q
        y-=a[1]*q
        y=(y%a[3]+a[3])%a[3]
        s.add((x, y))
    print(len(s))
0