結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
51,968 KB
testcase_01 AC 32 ms
52,096 KB
testcase_02 AC 31 ms
51,712 KB
testcase_03 AC 33 ms
52,096 KB
testcase_04 AC 34 ms
52,096 KB
testcase_05 AC 31 ms
52,064 KB
testcase_06 AC 32 ms
52,352 KB
testcase_07 AC 31 ms
51,968 KB
testcase_08 AC 31 ms
52,352 KB
testcase_09 AC 30 ms
52,480 KB
testcase_10 AC 30 ms
51,968 KB
testcase_11 AC 30 ms
51,968 KB
testcase_12 AC 31 ms
51,968 KB
testcase_13 AC 29 ms
52,096 KB
testcase_14 AC 86 ms
76,032 KB
testcase_15 AC 93 ms
76,032 KB
testcase_16 AC 72 ms
76,416 KB
testcase_17 AC 34 ms
52,864 KB
testcase_18 AC 76 ms
76,212 KB
testcase_19 AC 83 ms
76,232 KB
testcase_20 AC 97 ms
76,032 KB
testcase_21 AC 79 ms
76,272 KB
testcase_22 AC 62 ms
75,776 KB
testcase_23 AC 86 ms
75,776 KB
testcase_24 AC 71 ms
76,160 KB
testcase_25 AC 87 ms
76,164 KB
testcase_26 AC 103 ms
76,208 KB
testcase_27 AC 85 ms
76,288 KB
testcase_28 AC 84 ms
76,032 KB
testcase_29 AC 94 ms
75,904 KB
testcase_30 AC 51 ms
67,968 KB
testcase_31 AC 39 ms
55,552 KB
testcase_32 AC 72 ms
76,416 KB
testcase_33 AC 78 ms
76,032 KB
testcase_34 AC 72 ms
76,032 KB
testcase_35 AC 87 ms
76,288 KB
testcase_36 AC 51 ms
68,224 KB
testcase_37 AC 80 ms
76,204 KB
testcase_38 AC 75 ms
76,032 KB
testcase_39 AC 62 ms
76,092 KB
testcase_40 AC 92 ms
76,672 KB
testcase_41 AC 66 ms
76,288 KB
testcase_42 AC 89 ms
76,032 KB
testcase_43 AC 72 ms
75,904 KB
testcase_44 AC 84 ms
75,952 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
    print(ans)
    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