結果

問題 No.321 (P,Q)-サンタと街の子供たち
ユーザー kimiyukikimiyuki
提出日時 2016-04-19 18:50:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 458 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-04 14:09:16
合計ジャッジ時間 7,499 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 24 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 RE -
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 26 ms
10,880 KB
testcase_10 AC 26 ms
10,880 KB
testcase_11 AC 26 ms
10,752 KB
testcase_12 AC 28 ms
10,624 KB
testcase_13 AC 27 ms
10,752 KB
testcase_14 AC 229 ms
10,752 KB
testcase_15 AC 325 ms
10,624 KB
testcase_16 AC 132 ms
10,752 KB
testcase_17 AC 28 ms
10,624 KB
testcase_18 AC 163 ms
10,880 KB
testcase_19 AC 205 ms
10,880 KB
testcase_20 AC 307 ms
10,752 KB
testcase_21 AC 222 ms
10,624 KB
testcase_22 AC 70 ms
10,752 KB
testcase_23 AC 268 ms
10,624 KB
testcase_24 AC 85 ms
10,752 KB
testcase_25 AC 177 ms
10,624 KB
testcase_26 AC 289 ms
10,624 KB
testcase_27 AC 229 ms
10,752 KB
testcase_28 AC 217 ms
10,880 KB
testcase_29 AC 311 ms
10,880 KB
testcase_30 AC 35 ms
10,752 KB
testcase_31 AC 31 ms
10,624 KB
testcase_32 AC 183 ms
10,624 KB
testcase_33 AC 175 ms
10,624 KB
testcase_34 AC 131 ms
10,752 KB
testcase_35 AC 279 ms
10,624 KB
testcase_36 AC 33 ms
10,880 KB
testcase_37 AC 194 ms
10,752 KB
testcase_38 AC 166 ms
10,752 KB
testcase_39 AC 69 ms
10,752 KB
testcase_40 AC 294 ms
10,752 KB
testcase_41 AC 110 ms
10,752 KB
testcase_42 AC 249 ms
10,624 KB
testcase_43 AC 131 ms
10,752 KB
testcase_44 AC 228 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import math
p, q = map(int,input().split())
n = int(input())
if p == 0 or q == 0:
    gcd = p + q
    even = True
else:
    gcd = math.gcd(p, q)
    even = (p / gcd) % 2 == 0 or (q / gcd) % 2 == 0
ans = 0
for i in range(n):
    x, y = map(int,input().split())
    if x % gcd == 0 and y % gcd == 0:
        if even:
            ans += 1
        else:
            if ((x / gcd) + (y / gcd)) % 2 == 0:
                ans += 1
print(ans)
0