結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 28 ms
10,880 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 RE -
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 27 ms
10,880 KB
testcase_11 AC 28 ms
10,624 KB
testcase_12 AC 27 ms
10,752 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 229 ms
10,624 KB
testcase_15 AC 335 ms
10,624 KB
testcase_16 AC 135 ms
10,752 KB
testcase_17 AC 29 ms
10,880 KB
testcase_18 AC 162 ms
10,880 KB
testcase_19 AC 216 ms
10,752 KB
testcase_20 AC 314 ms
10,752 KB
testcase_21 AC 225 ms
10,880 KB
testcase_22 AC 71 ms
10,752 KB
testcase_23 AC 282 ms
10,880 KB
testcase_24 AC 92 ms
10,752 KB
testcase_25 AC 190 ms
10,752 KB
testcase_26 AC 301 ms
10,624 KB
testcase_27 AC 234 ms
10,624 KB
testcase_28 AC 233 ms
10,624 KB
testcase_29 AC 347 ms
10,624 KB
testcase_30 AC 34 ms
10,624 KB
testcase_31 AC 29 ms
10,880 KB
testcase_32 AC 184 ms
10,624 KB
testcase_33 AC 172 ms
10,752 KB
testcase_34 AC 129 ms
10,624 KB
testcase_35 AC 289 ms
10,752 KB
testcase_36 AC 37 ms
10,752 KB
testcase_37 AC 200 ms
10,880 KB
testcase_38 AC 161 ms
10,880 KB
testcase_39 AC 70 ms
10,752 KB
testcase_40 AC 288 ms
10,624 KB
testcase_41 AC 106 ms
10,880 KB
testcase_42 AC 245 ms
10,752 KB
testcase_43 AC 135 ms
10,880 KB
testcase_44 AC 248 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import math
p, q = map(int,input().split())
n = int(input())
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