結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,712 KB
testcase_01 AC 38 ms
52,828 KB
testcase_02 WA -
testcase_03 AC 37 ms
52,576 KB
testcase_04 AC 37 ms
53,076 KB
testcase_05 AC 37 ms
52,392 KB
testcase_06 WA -
testcase_07 AC 37 ms
52,452 KB
testcase_08 AC 37 ms
52,256 KB
testcase_09 AC 37 ms
53,672 KB
testcase_10 AC 37 ms
52,712 KB
testcase_11 AC 38 ms
52,828 KB
testcase_12 AC 38 ms
52,960 KB
testcase_13 AC 38 ms
52,932 KB
testcase_14 AC 101 ms
76,732 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 40 ms
53,948 KB
testcase_18 AC 91 ms
76,260 KB
testcase_19 AC 101 ms
76,628 KB
testcase_20 AC 115 ms
76,596 KB
testcase_21 AC 95 ms
76,336 KB
testcase_22 WA -
testcase_23 AC 105 ms
76,252 KB
testcase_24 AC 80 ms
76,404 KB
testcase_25 AC 93 ms
76,612 KB
testcase_26 AC 111 ms
76,404 KB
testcase_27 AC 103 ms
76,448 KB
testcase_28 AC 102 ms
76,588 KB
testcase_29 AC 112 ms
76,316 KB
testcase_30 AC 63 ms
69,740 KB
testcase_31 AC 46 ms
57,700 KB
testcase_32 AC 89 ms
76,508 KB
testcase_33 AC 94 ms
76,460 KB
testcase_34 AC 85 ms
76,744 KB
testcase_35 AC 105 ms
76,656 KB
testcase_36 AC 61 ms
69,428 KB
testcase_37 AC 98 ms
76,556 KB
testcase_38 AC 91 ms
76,140 KB
testcase_39 AC 75 ms
76,292 KB
testcase_40 AC 115 ms
76,268 KB
testcase_41 AC 78 ms
76,300 KB
testcase_42 AC 107 ms
76,268 KB
testcase_43 AC 87 ms
76,352 KB
testcase_44 AC 103 ms
76,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

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

if p == 0 or q == 0:
    ans = 0
    n = int(input())
    if p == 0 and q == 0:
        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