結果

問題 No.321 (P,Q)-サンタと街の子供たち
ユーザー rpy3cpprpy3cpp
提出日時 2015-12-14 02:33:50
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 791 bytes
コンパイル時間 724 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 23,680 KB
最終ジャッジ日時 2024-09-15 12:06:48
合計ジャッジ時間 8,879 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 RE -
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 257 ms
18,432 KB
testcase_15 AC 361 ms
23,552 KB
testcase_16 AC 152 ms
15,744 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 182 ms
17,024 KB
testcase_19 AC 233 ms
18,944 KB
testcase_20 AC 348 ms
23,552 KB
testcase_21 AC 223 ms
18,048 KB
testcase_22 AC 83 ms
12,800 KB
testcase_23 AC 297 ms
21,376 KB
testcase_24 AC 98 ms
13,440 KB
testcase_25 AC 205 ms
17,792 KB
testcase_26 AC 330 ms
22,912 KB
testcase_27 AC 256 ms
19,712 KB
testcase_28 AC 246 ms
19,584 KB
testcase_29 AC 356 ms
23,680 KB
testcase_30 AC 38 ms
11,008 KB
testcase_31 AC 33 ms
10,752 KB
testcase_32 AC 195 ms
17,408 KB
testcase_33 AC 189 ms
16,896 KB
testcase_34 AC 142 ms
15,360 KB
testcase_35 AC 286 ms
20,736 KB
testcase_36 AC 40 ms
11,136 KB
testcase_37 AC 221 ms
18,432 KB
testcase_38 AC 185 ms
16,896 KB
testcase_39 AC 77 ms
12,672 KB
testcase_40 AC 331 ms
22,656 KB
testcase_41 AC 111 ms
13,824 KB
testcase_42 AC 288 ms
21,120 KB
testcase_43 AC 154 ms
15,616 KB
testcase_44 AC 260 ms
19,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math


def read_data():
    P, Q = map(int, input().split())
    N = int(input())
    xys = []
    for n in range(N):
        x, y = map(int, input().split())
        xys.append((x, y))
    return P, Q, N, xys


def solve(P, Q, N, xys):
    if P == 0 and Q == 0:
        return len(1 for x, y in xys if x == 0 and y == 0)
    if P == 0 or Q == 0:
        GCD = P + Q
        odd_cycle = True
    else:
        GCD = math.gcd(P, Q)
        LCM = P * Q // GCD
        odd_cycle = (LCM // P + LCM // Q) % 2
    count = 0
    for x, y in xys:
        mx, rx = divmod(x, GCD)
        my, ry = divmod(y, GCD)
        if rx == 0 and ry == 0:
            if odd_cycle or ((mx + my) % 2 == 0):
                count += 1
    return count


P, Q, N, xys = read_data()
print(solve(P, Q, N, xys))
0