結果

問題 No.321 (P,Q)-サンタと街の子供たち
ユーザー rlangevinrlangevin
提出日時 2023-10-26 12:29:32
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 386 bytes
コンパイル時間 1,219 ms
コンパイル使用メモリ 81,744 KB
実行使用メモリ 76,336 KB
最終ジャッジ日時 2024-09-25 12:22:45
合計ジャッジ時間 5,703 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 37 ms
52,564 KB
testcase_02 AC 38 ms
52,488 KB
testcase_03 AC 38 ms
52,196 KB
testcase_04 AC 38 ms
52,252 KB
testcase_05 RE -
testcase_06 AC 37 ms
53,468 KB
testcase_07 AC 38 ms
52,380 KB
testcase_08 AC 38 ms
53,352 KB
testcase_09 AC 38 ms
52,128 KB
testcase_10 AC 38 ms
53,076 KB
testcase_11 AC 38 ms
52,432 KB
testcase_12 AC 38 ms
52,260 KB
testcase_13 AC 37 ms
53,224 KB
testcase_14 AC 71 ms
76,016 KB
testcase_15 AC 77 ms
75,912 KB
testcase_16 AC 63 ms
75,924 KB
testcase_17 AC 39 ms
53,080 KB
testcase_18 AC 67 ms
75,796 KB
testcase_19 AC 72 ms
76,336 KB
testcase_20 AC 78 ms
75,672 KB
testcase_21 AC 69 ms
75,852 KB
testcase_22 AC 53 ms
69,248 KB
testcase_23 AC 72 ms
75,720 KB
testcase_24 AC 55 ms
72,404 KB
testcase_25 AC 67 ms
75,536 KB
testcase_26 AC 76 ms
76,180 KB
testcase_27 AC 73 ms
75,912 KB
testcase_28 AC 71 ms
75,980 KB
testcase_29 AC 77 ms
76,028 KB
testcase_30 AC 46 ms
61,960 KB
testcase_31 AC 41 ms
53,396 KB
testcase_32 AC 65 ms
75,928 KB
testcase_33 AC 69 ms
76,132 KB
testcase_34 AC 63 ms
75,936 KB
testcase_35 AC 73 ms
75,816 KB
testcase_36 AC 47 ms
61,992 KB
testcase_37 AC 69 ms
75,728 KB
testcase_38 AC 67 ms
75,792 KB
testcase_39 AC 53 ms
68,236 KB
testcase_40 AC 79 ms
76,136 KB
testcase_41 AC 56 ms
72,892 KB
testcase_42 AC 74 ms
75,860 KB
testcase_43 AC 63 ms
75,864 KB
testcase_44 AC 72 ms
75,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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