結果

問題 No.321 (P,Q)-サンタと街の子供たち
ユーザー maspymaspy
提出日時 2020-03-04 18:44:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 632 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,980 KB
最終ジャッジ日時 2024-10-14 00:23:28
合計ジャッジ時間 4,402 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 RE -
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 27 ms
10,880 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 28 ms
10,752 KB
testcase_13 AC 26 ms
10,624 KB
testcase_14 AC 90 ms
24,532 KB
testcase_15 AC 127 ms
33,980 KB
testcase_16 AC 61 ms
19,776 KB
testcase_17 AC 27 ms
10,624 KB
testcase_18 AC 70 ms
21,864 KB
testcase_19 AC 86 ms
25,584 KB
testcase_20 AC 114 ms
33,532 KB
testcase_21 AC 87 ms
23,988 KB
testcase_22 AC 42 ms
14,576 KB
testcase_23 AC 111 ms
29,988 KB
testcase_24 AC 45 ms
15,552 KB
testcase_25 AC 79 ms
23,488 KB
testcase_26 AC 116 ms
32,516 KB
testcase_27 AC 91 ms
27,040 KB
testcase_28 AC 88 ms
26,572 KB
testcase_29 AC 127 ms
33,856 KB
testcase_30 AC 30 ms
11,392 KB
testcase_31 AC 28 ms
10,880 KB
testcase_32 AC 78 ms
22,516 KB
testcase_33 AC 73 ms
22,032 KB
testcase_34 AC 62 ms
18,844 KB
testcase_35 AC 110 ms
28,376 KB
testcase_36 AC 31 ms
11,392 KB
testcase_37 AC 84 ms
24,640 KB
testcase_38 AC 73 ms
21,884 KB
testcase_39 AC 44 ms
13,916 KB
testcase_40 AC 118 ms
32,336 KB
testcase_41 AC 54 ms
16,268 KB
testcase_42 AC 103 ms
29,204 KB
testcase_43 AC 66 ms
19,716 KB
testcase_44 AC 95 ms
27,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from math import gcd

# %%
P, Q = map(int, readline().split())
N = int(readline())
m = map(int, read().split())
XY = list(zip(m, m))

# %%
d = gcd(P, Q)
P //= d
Q //= d
is_even = (P + Q) % 2 == 0


# %%
def check(X, Y, d, is_even):
    if X % d != 0:
        return False
    if Y % d != 0:
        return False
    X //= d
    Y //= d
    if is_even:
        return (X + Y) % 2 == 0
    else:
        return True


# %%
answer = sum(check(x, y, d, is_even) for x, y in XY)
print(answer)
0