結果

問題 No.321 (P,Q)-サンタと街の子供たち
ユーザー tassei903tassei903
提出日時 2023-08-05 10:54:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 1,066 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 76,304 KB
最終ジャッジ日時 2024-10-15 08:04:39
合計ジャッジ時間 6,153 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,484 KB
testcase_01 AC 38 ms
53,572 KB
testcase_02 AC 38 ms
53,376 KB
testcase_03 AC 37 ms
52,332 KB
testcase_04 AC 38 ms
53,116 KB
testcase_05 AC 38 ms
53,652 KB
testcase_06 AC 37 ms
52,992 KB
testcase_07 AC 38 ms
53,020 KB
testcase_08 AC 37 ms
52,696 KB
testcase_09 AC 38 ms
53,744 KB
testcase_10 AC 38 ms
53,756 KB
testcase_11 AC 38 ms
53,560 KB
testcase_12 AC 38 ms
53,140 KB
testcase_13 AC 39 ms
52,624 KB
testcase_14 AC 84 ms
75,564 KB
testcase_15 AC 93 ms
76,216 KB
testcase_16 AC 74 ms
76,172 KB
testcase_17 AC 40 ms
54,200 KB
testcase_18 AC 80 ms
75,520 KB
testcase_19 AC 83 ms
75,940 KB
testcase_20 AC 95 ms
76,164 KB
testcase_21 AC 81 ms
75,776 KB
testcase_22 AC 68 ms
75,880 KB
testcase_23 AC 89 ms
76,304 KB
testcase_24 AC 70 ms
75,744 KB
testcase_25 AC 81 ms
75,552 KB
testcase_26 AC 95 ms
75,532 KB
testcase_27 AC 85 ms
75,628 KB
testcase_28 AC 86 ms
75,664 KB
testcase_29 AC 92 ms
76,044 KB
testcase_30 AC 55 ms
65,976 KB
testcase_31 AC 46 ms
60,900 KB
testcase_32 AC 76 ms
75,928 KB
testcase_33 AC 79 ms
75,992 KB
testcase_34 AC 74 ms
75,648 KB
testcase_35 AC 88 ms
76,264 KB
testcase_36 AC 55 ms
66,340 KB
testcase_37 AC 84 ms
75,700 KB
testcase_38 AC 80 ms
76,132 KB
testcase_39 AC 66 ms
75,872 KB
testcase_40 AC 97 ms
76,248 KB
testcase_41 AC 72 ms
75,704 KB
testcase_42 AC 89 ms
76,120 KB
testcase_43 AC 78 ms
75,656 KB
testcase_44 AC 90 ms
75,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
def norm(a):
    return a[0]*a[0]+a[1]*a[1]

def round(a, b):
    return (a*2+b)//(2*b)

def div(a, b):
    c = (round(a[0]*b[0] + a[1]*b[1], norm(b)), round(a[1]*b[0]-a[0]*b[1], norm(b)))
    return a[0] - b[0]*c[0] + b[1]*c[1], a[1] - b[0]*c[1] - b[1]*c[0]

def gcd(a, b):
    if b == (0,0):
        return a
    return gcd(b, div(a, b))


p, q = na()
if p == 0 and q == 0:
    n = ni()
    ans = 0
    for i in range(n):
        x, y = na()
        if x == 0 and y == 0:
            ans += 1
    print(ans)
    exit()

r = gcd((p, q), (p, -q))
n = ni()
ans = 0
for _ in range(n):
    x, y = na()
    if (r[0] * x + r[1] * y) % norm(r) == 0 and (r[0] * y - r[1] * x) % norm(r) == 0:
        ans += 1
print(ans)
0