結果

問題 No.321 (P,Q)-サンタと街の子供たち
ユーザー ayaoniayaoni
提出日時 2020-11-26 19:27:59
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 394 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 76,552 KB
最終ジャッジ日時 2024-07-23 20:55:47
合計ジャッジ時間 5,869 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 40 ms
53,756 KB
testcase_02 AC 38 ms
53,732 KB
testcase_03 AC 38 ms
52,932 KB
testcase_04 AC 37 ms
53,204 KB
testcase_05 RE -
testcase_06 AC 37 ms
53,668 KB
testcase_07 AC 39 ms
52,068 KB
testcase_08 AC 38 ms
53,004 KB
testcase_09 AC 38 ms
52,948 KB
testcase_10 AC 38 ms
52,336 KB
testcase_11 AC 37 ms
52,868 KB
testcase_12 AC 38 ms
52,484 KB
testcase_13 AC 38 ms
53,328 KB
testcase_14 AC 77 ms
75,716 KB
testcase_15 AC 80 ms
75,600 KB
testcase_16 AC 66 ms
75,828 KB
testcase_17 AC 39 ms
53,388 KB
testcase_18 AC 70 ms
75,788 KB
testcase_19 AC 75 ms
75,896 KB
testcase_20 AC 82 ms
76,084 KB
testcase_21 AC 71 ms
75,644 KB
testcase_22 AC 55 ms
70,980 KB
testcase_23 AC 74 ms
75,688 KB
testcase_24 AC 58 ms
74,280 KB
testcase_25 AC 68 ms
76,264 KB
testcase_26 AC 80 ms
75,932 KB
testcase_27 AC 75 ms
76,552 KB
testcase_28 AC 75 ms
75,744 KB
testcase_29 AC 79 ms
75,804 KB
testcase_30 AC 48 ms
62,772 KB
testcase_31 AC 43 ms
54,500 KB
testcase_32 AC 67 ms
76,088 KB
testcase_33 AC 72 ms
76,088 KB
testcase_34 AC 66 ms
75,992 KB
testcase_35 AC 76 ms
75,740 KB
testcase_36 AC 48 ms
63,768 KB
testcase_37 AC 72 ms
76,116 KB
testcase_38 AC 69 ms
76,420 KB
testcase_39 AC 54 ms
70,556 KB
testcase_40 AC 81 ms
76,176 KB
testcase_41 AC 63 ms
75,792 KB
testcase_42 AC 79 ms
75,796 KB
testcase_43 AC 68 ms
75,792 KB
testcase_44 AC 77 ms
76,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from math import gcd
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())


P,Q = MI()
g = gcd(P,Q)

N = I()
ans = 0
for _ in range(N):
    X,Y = MI()
    if X % g == Y % g == 0:
        if (P//g+Q//g) % 2 == 0:
            if (X//g+Y//g) % 2 == 0:
                ans += 1
        else:
            ans += 1

print(ans)
0