結果

問題 No.321 (P,Q)-サンタと街の子供たち
ユーザー ああいいああいい
提出日時 2022-03-02 12:01:58
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 310 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,576 KB
最終ジャッジ日時 2024-07-16 05:46:32
合計ジャッジ時間 6,503 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 39 ms
52,372 KB
testcase_02 AC 42 ms
52,316 KB
testcase_03 AC 38 ms
51,824 KB
testcase_04 WA -
testcase_05 RE -
testcase_06 AC 41 ms
52,260 KB
testcase_07 AC 39 ms
52,708 KB
testcase_08 AC 39 ms
52,356 KB
testcase_09 AC 41 ms
52,088 KB
testcase_10 AC 44 ms
53,128 KB
testcase_11 WA -
testcase_12 AC 42 ms
52,616 KB
testcase_13 AC 42 ms
53,412 KB
testcase_14 WA -
testcase_15 AC 118 ms
76,168 KB
testcase_16 AC 90 ms
76,140 KB
testcase_17 AC 42 ms
53,708 KB
testcase_18 AC 97 ms
75,636 KB
testcase_19 WA -
testcase_20 AC 118 ms
76,524 KB
testcase_21 WA -
testcase_22 AC 83 ms
76,092 KB
testcase_23 AC 106 ms
75,916 KB
testcase_24 AC 81 ms
76,180 KB
testcase_25 WA -
testcase_26 AC 118 ms
76,092 KB
testcase_27 WA -
testcase_28 AC 104 ms
75,932 KB
testcase_29 AC 114 ms
76,252 KB
testcase_30 AC 64 ms
68,636 KB
testcase_31 AC 49 ms
55,816 KB
testcase_32 AC 92 ms
75,576 KB
testcase_33 WA -
testcase_34 AC 89 ms
75,672 KB
testcase_35 WA -
testcase_36 AC 65 ms
68,656 KB
testcase_37 AC 102 ms
76,036 KB
testcase_38 AC 94 ms
75,760 KB
testcase_39 WA -
testcase_40 AC 118 ms
76,252 KB
testcase_41 WA -
testcase_42 AC 109 ms
75,884 KB
testcase_43 AC 91 ms
75,780 KB
testcase_44 AC 104 ms
76,312 KB
権限があれば一括ダウンロードができます

ソースコード

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)
for _ in range(N):
    x,y = map(int,input().split())
    if x % d == 0 and y % d == 0:
        ans += 1
print(ans)
0