結果

問題 No.321 (P,Q)-サンタと街の子供たち
ユーザー matsu7874matsu7874
提出日時 2015-12-14 13:57:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 2,366 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 10,772 KB
実行使用メモリ 8,260 KB
最終ジャッジ日時 2023-10-13 16:31:43
合計ジャッジ時間 7,261 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
8,208 KB
testcase_01 AC 16 ms
8,112 KB
testcase_02 AC 18 ms
8,040 KB
testcase_03 AC 17 ms
8,204 KB
testcase_04 AC 16 ms
8,132 KB
testcase_05 AC 17 ms
8,200 KB
testcase_06 AC 16 ms
8,100 KB
testcase_07 AC 16 ms
8,060 KB
testcase_08 AC 16 ms
8,140 KB
testcase_09 WA -
testcase_10 AC 16 ms
8,144 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 16 ms
8,112 KB
testcase_14 WA -
testcase_15 AC 293 ms
8,056 KB
testcase_16 AC 121 ms
8,056 KB
testcase_17 AC 17 ms
8,140 KB
testcase_18 WA -
testcase_19 AC 193 ms
8,104 KB
testcase_20 AC 286 ms
8,204 KB
testcase_21 AC 179 ms
8,096 KB
testcase_22 AC 61 ms
8,052 KB
testcase_23 AC 250 ms
8,216 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 284 ms
8,100 KB
testcase_30 AC 22 ms
8,060 KB
testcase_31 WA -
testcase_32 AC 155 ms
8,064 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(a, b):
    # 最大公約数
    while b > 0:
        a, b = b, a % b
    return a


def is_reachable(p, q, x, y):
    if p == 0:
        if q == 0:
            return x == 0 and y == 0
        else:
            return x % q == 0 and y % q == 0

    if q % 2 == 0:
        if p % 2 == 0:
            gap = 2 * p
            return (x % gap == 0 and y % gap == 0) or ((x + p) % gap == 0 and (y + p) % gap == 0)
        elif q%p == 0:
            return x % p == 0 and y % p == 0
        else:
            return True
    else:
        if p%2 == 0:
            return True
        elif q%p == 0:
            gap = 2 * p
            return (x % gap == 0 and y % gap == 0) or ((x + p) % gap == 0 and (y + p) % gap == 0)
        else:
            return x % p == 0 and y % p == 0



    gap = gcd(p, q)
    if p % 2 == q % 2:
        if gap == 1:
            return x % 2 == 0 and y % 2 == 0
        elif gap == p:
            gap = 2 * p
            return (x % gap == 0 and y % gap == 0) or ((x + p) % gap == 0 and (y + p) % gap == 0)
        else:
            return (x % p == 0 and (y + gap) % p == 0) or ((x + gap) % p == 0 and y % p == 0)
    else:
        if gap == 1:
            return True
        elif gap == p:
            return x % p == 0 and y % p == 0
        else:
            return (x % p == 0 and (y + gap) % p == 0) or ((x + gap) % p == 0 and y % p == 0)


P, Q = map(int, input().split())
if P > Q:
    P, Q = Q, P

# size = 100
# inf = 1000
# town = [[inf for j in range(size)] for i in range(size)]
# town[0][0] = 0
# for i in range(50):
#     for j in range(size):
#         for k in range(size):
#             for dy, dx in ((P, Q), (P, -Q), (-P, Q), (-P, -Q), (Q, P), (Q, -P), (-Q, P), (-Q, -P)):
#                 if town[j][k] < inf and 0 <= j + dy < size and 0 <= k + dx < size:
#                     town[j + dy][k +
#                                  dx] = min(town[j + dy][k + dx], town[j][k] + 1)


N = int(input())
cnt = 0
for i in range(N):
    x, y = map(int, input().split())
    if is_reachable(P, Q, x, y):
        cnt += 1
    #     if town[y][x] == inf:
    #         print(x, y, 'is NOT good child')
    # elif town[y][x] < inf:
    #     print(x, y, 'is good child')
print(cnt)
#
# for i in range(min(30, size)):
#     for j in range(min(30, size)):
#         print((' ' + str(town[i][j]))[-2:], end=' ')
#     print()
0