結果

問題 No.321 (P,Q)-サンタと街の子供たち
ユーザー rlangevinrlangevin
提出日時 2023-10-26 12:31:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 566 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-09-25 12:22:50
合計ジャッジ時間 4,488 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 37 ms
52,352 KB
testcase_06 AC 37 ms
52,480 KB
testcase_07 AC 38 ms
51,840 KB
testcase_08 AC 38 ms
51,968 KB
testcase_09 AC 38 ms
52,096 KB
testcase_10 AC 37 ms
52,096 KB
testcase_11 AC 37 ms
52,096 KB
testcase_12 AC 37 ms
52,480 KB
testcase_13 AC 38 ms
52,224 KB
testcase_14 AC 71 ms
76,080 KB
testcase_15 AC 76 ms
75,996 KB
testcase_16 AC 62 ms
75,776 KB
testcase_17 AC 38 ms
52,608 KB
testcase_18 AC 67 ms
75,660 KB
testcase_19 AC 71 ms
76,048 KB
testcase_20 AC 81 ms
75,712 KB
testcase_21 AC 69 ms
75,740 KB
testcase_22 AC 54 ms
68,736 KB
testcase_23 AC 72 ms
75,520 KB
testcase_24 AC 56 ms
71,040 KB
testcase_25 AC 66 ms
76,144 KB
testcase_26 AC 84 ms
76,016 KB
testcase_27 AC 75 ms
76,148 KB
testcase_28 AC 71 ms
75,692 KB
testcase_29 AC 78 ms
76,000 KB
testcase_30 AC 47 ms
61,568 KB
testcase_31 AC 39 ms
53,248 KB
testcase_32 AC 65 ms
75,648 KB
testcase_33 AC 69 ms
75,904 KB
testcase_34 AC 64 ms
75,776 KB
testcase_35 AC 76 ms
75,952 KB
testcase_36 AC 47 ms
61,696 KB
testcase_37 AC 69 ms
76,160 KB
testcase_38 AC 67 ms
75,648 KB
testcase_39 AC 53 ms
67,840 KB
testcase_40 AC 79 ms
75,648 KB
testcase_41 AC 58 ms
72,832 KB
testcase_42 AC 76 ms
75,904 KB
testcase_43 AC 65 ms
75,896 KB
testcase_44 AC 73 ms
75,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from math import gcd

P, Q = map(int, input().split())
g = gcd(P, Q)
if g == 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()

P //= g
Q //= g
ans = 0
N = int(input())
for _ in range(N):
    X, Y = map(int, input().split())
    if X % g or Y % g:
        continue
    X //= g
    Y //= g
    if P % 2 == 0 or Q % 2 == 0:
        ans += 1
        continue
    if X % 2 == Y % 2:
        ans += 1

print(ans)
0