結果

問題 No.321 (P,Q)-サンタと街の子供たち
ユーザー 👑 rin204rin204
提出日時 2023-02-08 20:42:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 536 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 76,748 KB
最終ジャッジ日時 2024-07-06 06:23:11
合計ジャッジ時間 4,226 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 32 ms
53,016 KB
testcase_02 AC 33 ms
52,956 KB
testcase_03 AC 30 ms
53,692 KB
testcase_04 AC 29 ms
52,788 KB
testcase_05 WA -
testcase_06 AC 31 ms
52,816 KB
testcase_07 AC 31 ms
53,512 KB
testcase_08 AC 30 ms
53,064 KB
testcase_09 AC 31 ms
52,724 KB
testcase_10 AC 30 ms
52,728 KB
testcase_11 AC 30 ms
52,944 KB
testcase_12 AC 30 ms
53,232 KB
testcase_13 AC 31 ms
52,460 KB
testcase_14 AC 88 ms
75,988 KB
testcase_15 AC 94 ms
76,388 KB
testcase_16 AC 73 ms
76,104 KB
testcase_17 AC 34 ms
53,816 KB
testcase_18 AC 76 ms
76,140 KB
testcase_19 AC 84 ms
76,012 KB
testcase_20 AC 95 ms
75,936 KB
testcase_21 AC 78 ms
76,576 KB
testcase_22 AC 62 ms
76,452 KB
testcase_23 AC 86 ms
76,248 KB
testcase_24 AC 66 ms
75,956 KB
testcase_25 AC 79 ms
76,268 KB
testcase_26 AC 95 ms
75,928 KB
testcase_27 AC 84 ms
76,664 KB
testcase_28 AC 85 ms
76,288 KB
testcase_29 AC 94 ms
76,220 KB
testcase_30 AC 53 ms
68,620 KB
testcase_31 AC 38 ms
56,348 KB
testcase_32 AC 74 ms
76,488 KB
testcase_33 AC 78 ms
76,400 KB
testcase_34 AC 71 ms
76,192 KB
testcase_35 AC 86 ms
76,260 KB
testcase_36 AC 51 ms
70,376 KB
testcase_37 AC 80 ms
76,268 KB
testcase_38 AC 76 ms
76,132 KB
testcase_39 AC 62 ms
76,388 KB
testcase_40 AC 94 ms
76,424 KB
testcase_41 AC 67 ms
76,132 KB
testcase_42 AC 86 ms
76,400 KB
testcase_43 AC 70 ms
76,748 KB
testcase_44 AC 84 ms
76,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

p, q = map(int, input().split())

if p == 0 and q == 0:
    ans = 0
    n = int(input())
    for _ in range(n):
        x, y = map(int, input().split())
        if x == y == 0:
            ans += 1
    exit()

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