結果

問題 No.321 (P,Q)-サンタと街の子供たち
ユーザー ああいいああいい
提出日時 2022-03-02 12:09:47
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 562 bytes
コンパイル時間 597 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-07-16 05:52:53
合計ジャッジ時間 4,526 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 AC 34 ms
51,968 KB
testcase_05 AC 34 ms
52,480 KB
testcase_06 RE -
testcase_07 AC 34 ms
52,224 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 35 ms
51,840 KB
testcase_11 AC 35 ms
52,352 KB
testcase_12 AC 34 ms
51,968 KB
testcase_13 AC 33 ms
52,096 KB
testcase_14 AC 93 ms
76,288 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 91 ms
76,328 KB
testcase_20 RE -
testcase_21 AC 89 ms
76,380 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 89 ms
76,288 KB
testcase_26 RE -
testcase_27 AC 98 ms
75,904 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 86 ms
76,032 KB
testcase_34 RE -
testcase_35 AC 98 ms
76,416 KB
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 AC 69 ms
76,288 KB
testcase_40 RE -
testcase_41 AC 74 ms
76,176 KB
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def gcd(a,b):
    if b == 0:return a
    while True:
        r =a % b
        a = b
        b = r
        if r == 0:return a
ans = 0
d = gcd(p,q)
if d != 0:
    p //= d
    q //= d
    if (p+q) % 2 == 0:
        flag = True
for _ in range(N):
    x,y = map(int,input().split())
    if d == 0:
        if x == 0 and y == 0:ans += 1
        continue
    if x % d == 0 and y % d == 0:
        x //= d
        y //= d
        if flag:
            if (x+y)% 2 == 0:ans+= 1
        else:
            ans += 1
print(ans)
0