結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,996 KB
testcase_01 AC 36 ms
52,008 KB
testcase_02 AC 36 ms
52,620 KB
testcase_03 AC 35 ms
53,108 KB
testcase_04 WA -
testcase_05 AC 35 ms
53,536 KB
testcase_06 AC 36 ms
53,264 KB
testcase_07 AC 35 ms
53,252 KB
testcase_08 AC 34 ms
52,740 KB
testcase_09 AC 37 ms
52,600 KB
testcase_10 AC 35 ms
52,808 KB
testcase_11 WA -
testcase_12 AC 34 ms
52,884 KB
testcase_13 AC 34 ms
53,288 KB
testcase_14 WA -
testcase_15 AC 103 ms
76,368 KB
testcase_16 AC 80 ms
76,460 KB
testcase_17 AC 38 ms
53,184 KB
testcase_18 AC 89 ms
75,916 KB
testcase_19 WA -
testcase_20 AC 111 ms
76,060 KB
testcase_21 WA -
testcase_22 AC 73 ms
76,460 KB
testcase_23 AC 104 ms
76,204 KB
testcase_24 AC 75 ms
76,492 KB
testcase_25 WA -
testcase_26 AC 102 ms
76,156 KB
testcase_27 WA -
testcase_28 AC 95 ms
76,112 KB
testcase_29 AC 104 ms
76,116 KB
testcase_30 AC 56 ms
68,520 KB
testcase_31 AC 45 ms
55,612 KB
testcase_32 AC 82 ms
76,036 KB
testcase_33 WA -
testcase_34 AC 82 ms
76,316 KB
testcase_35 WA -
testcase_36 AC 61 ms
68,264 KB
testcase_37 AC 92 ms
76,184 KB
testcase_38 AC 88 ms
76,120 KB
testcase_39 WA -
testcase_40 AC 106 ms
76,188 KB
testcase_41 WA -
testcase_42 AC 101 ms
76,288 KB
testcase_43 AC 84 ms
76,404 KB
testcase_44 AC 101 ms
76,048 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 d == 0:
        if x == 0 and y == 0:ans += 1
        continue
    if x % d == 0 and y % d == 0:
        ans += 1
print(ans)
0