結果

問題 No.321 (P,Q)-サンタと街の子供たち
ユーザー 👑 rin204rin204
提出日時 2023-02-08 20:40:37
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 359 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 76,884 KB
最終ジャッジ日時 2024-07-06 06:22:27
合計ジャッジ時間 5,727 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 30 ms
53,188 KB
testcase_02 AC 30 ms
52,804 KB
testcase_03 AC 34 ms
52,320 KB
testcase_04 AC 30 ms
52,920 KB
testcase_05 RE -
testcase_06 AC 31 ms
52,520 KB
testcase_07 AC 31 ms
53,624 KB
testcase_08 AC 31 ms
52,436 KB
testcase_09 AC 31 ms
52,400 KB
testcase_10 AC 30 ms
52,320 KB
testcase_11 AC 30 ms
53,672 KB
testcase_12 AC 30 ms
52,332 KB
testcase_13 AC 33 ms
52,864 KB
testcase_14 AC 85 ms
76,348 KB
testcase_15 AC 102 ms
75,904 KB
testcase_16 AC 75 ms
76,196 KB
testcase_17 AC 34 ms
53,776 KB
testcase_18 AC 90 ms
76,080 KB
testcase_19 AC 87 ms
76,340 KB
testcase_20 AC 96 ms
76,012 KB
testcase_21 AC 80 ms
76,256 KB
testcase_22 AC 62 ms
76,144 KB
testcase_23 AC 85 ms
76,372 KB
testcase_24 AC 73 ms
76,216 KB
testcase_25 AC 79 ms
76,052 KB
testcase_26 AC 100 ms
76,884 KB
testcase_27 AC 85 ms
76,604 KB
testcase_28 AC 85 ms
76,324 KB
testcase_29 AC 94 ms
76,176 KB
testcase_30 AC 52 ms
68,272 KB
testcase_31 AC 39 ms
55,836 KB
testcase_32 AC 73 ms
76,332 KB
testcase_33 AC 76 ms
76,212 KB
testcase_34 AC 70 ms
76,392 KB
testcase_35 AC 86 ms
76,016 KB
testcase_36 AC 51 ms
68,636 KB
testcase_37 AC 80 ms
76,748 KB
testcase_38 AC 76 ms
76,564 KB
testcase_39 AC 61 ms
76,328 KB
testcase_40 AC 94 ms
76,248 KB
testcase_41 AC 66 ms
76,564 KB
testcase_42 AC 87 ms
76,620 KB
testcase_43 AC 72 ms
76,540 KB
testcase_44 AC 89 ms
76,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

p, q = map(int, input().split())
g = gcd(p, q)
p //= g
q //= g
if (p + q) % 2 == 0:
    bi = True
else:
    bi = False
n = int(input())
ans = 0
for _ in range(n):
    x, y = map(int, input().split())
    if x % g != 0 or y % g != 0:
        continue
    x //= g
    y //= g
    if not bi or (x + y) % 2 == 0:
        ans += 1
print(ans)
0