結果

問題 No.321 (P,Q)-サンタと街の子供たち
ユーザー rpy3cpprpy3cpp
提出日時 2015-12-14 02:35:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 315 ms / 2,000 ms
コード長 792 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 23,808 KB
最終ジャッジ日時 2024-07-06 21:52:26
合計ジャッジ時間 7,419 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
11,008 KB
testcase_01 AC 28 ms
11,008 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 25 ms
11,008 KB
testcase_04 AC 26 ms
10,880 KB
testcase_05 AC 25 ms
10,880 KB
testcase_06 AC 25 ms
10,880 KB
testcase_07 AC 25 ms
10,880 KB
testcase_08 AC 27 ms
10,880 KB
testcase_09 AC 25 ms
10,880 KB
testcase_10 AC 26 ms
10,880 KB
testcase_11 AC 26 ms
10,880 KB
testcase_12 AC 26 ms
11,008 KB
testcase_13 AC 26 ms
10,880 KB
testcase_14 AC 225 ms
18,688 KB
testcase_15 AC 315 ms
23,808 KB
testcase_16 AC 138 ms
16,128 KB
testcase_17 AC 27 ms
10,880 KB
testcase_18 AC 166 ms
17,152 KB
testcase_19 AC 209 ms
19,200 KB
testcase_20 AC 301 ms
23,552 KB
testcase_21 AC 201 ms
18,304 KB
testcase_22 AC 74 ms
13,056 KB
testcase_23 AC 265 ms
21,504 KB
testcase_24 AC 88 ms
13,696 KB
testcase_25 AC 183 ms
18,048 KB
testcase_26 AC 295 ms
23,040 KB
testcase_27 AC 229 ms
19,968 KB
testcase_28 AC 226 ms
19,712 KB
testcase_29 AC 314 ms
23,808 KB
testcase_30 AC 34 ms
11,264 KB
testcase_31 AC 29 ms
11,136 KB
testcase_32 AC 171 ms
17,536 KB
testcase_33 AC 171 ms
17,152 KB
testcase_34 AC 127 ms
15,488 KB
testcase_35 AC 255 ms
20,736 KB
testcase_36 AC 34 ms
11,264 KB
testcase_37 AC 195 ms
18,688 KB
testcase_38 AC 166 ms
17,280 KB
testcase_39 AC 69 ms
12,672 KB
testcase_40 AC 301 ms
22,912 KB
testcase_41 AC 99 ms
14,080 KB
testcase_42 AC 251 ms
21,248 KB
testcase_43 AC 133 ms
15,872 KB
testcase_44 AC 232 ms
20,352 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 sum(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