結果

問題 No.1200 お菓子配り-3
ユーザー chineristACchineristAC
提出日時 2021-07-09 03:09:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 445 ms / 4,000 ms
コード長 3,133 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 87,340 KB
実行使用メモリ 83,644 KB
最終ジャッジ日時 2023-09-14 06:18:22
合計ジャッジ時間 9,727 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
73,880 KB
testcase_01 AC 110 ms
74,528 KB
testcase_02 AC 119 ms
78,376 KB
testcase_03 AC 113 ms
74,172 KB
testcase_04 AC 111 ms
73,892 KB
testcase_05 AC 112 ms
74,260 KB
testcase_06 AC 112 ms
74,172 KB
testcase_07 AC 129 ms
79,228 KB
testcase_08 AC 130 ms
79,856 KB
testcase_09 AC 129 ms
79,496 KB
testcase_10 AC 129 ms
79,356 KB
testcase_11 AC 128 ms
79,312 KB
testcase_12 AC 209 ms
82,728 KB
testcase_13 AC 208 ms
82,520 KB
testcase_14 AC 215 ms
82,276 KB
testcase_15 AC 203 ms
82,708 KB
testcase_16 AC 202 ms
82,980 KB
testcase_17 AC 257 ms
83,100 KB
testcase_18 AC 268 ms
83,156 KB
testcase_19 AC 211 ms
82,352 KB
testcase_20 AC 315 ms
82,936 KB
testcase_21 AC 316 ms
83,428 KB
testcase_22 AC 342 ms
83,644 KB
testcase_23 AC 335 ms
83,096 KB
testcase_24 AC 316 ms
83,492 KB
testcase_25 AC 334 ms
82,988 KB
testcase_26 AC 323 ms
83,236 KB
testcase_27 AC 109 ms
74,344 KB
testcase_28 AC 445 ms
82,748 KB
testcase_29 AC 336 ms
82,988 KB
testcase_30 AC 325 ms
82,876 KB
testcase_31 AC 113 ms
74,468 KB
testcase_32 AC 112 ms
74,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import gcd,log

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

def isPrimeMR(n):
    if n==1:
        return 0
    d = n - 1
    d = d // (d & -d)
    L = [2, 3, 5, 7, 11, 13, 17]
    if n in L:
        return True
    for a in L:
        t = d
        y = pow(a, t, n)
        if y == 1: continue
        while y != n - 1:
            y = (y * y) % n
            if y == 1 or t == n - 1: return 0
            t <<= 1
    return 1
def findFactorRho(n):
    from math import gcd
    m = 1 << n.bit_length() // 8
    for c in range(1, 99):
        f = lambda x: (x * x + c) % n
        y, r, q, g = 2, 1, 1, 1
        while g == 1:
            x = y
            for i in range(r):
                y = f(y)
            k = 0
            while k < r and g == 1:
                ys = y
                for i in range(min(m, r - k)):
                    y = f(y)
                    q = q * abs(x - y) % n
                g = gcd(q, n)
                k += m
            r <<= 1
        if g == n:
            g = 1
            while g == 1:
                ys = f(ys)
                g = gcd(abs(x - ys), n)
        if g < n:
            if isPrimeMR(g): return g
            elif isPrimeMR(n // g): return n // g
            return findFactorRho(g)
def primeFactor(n):
    i = 2
    ret = {}
    rhoFlg = 0
    while i*i <= n:
        k = 0
        while n % i == 0:
            n //= i
            k += 1
        if k: ret[i] = k
        i += 1 + i % 2
        if i == 101 and n >= 2 ** 20:
            while n > 1:
                if isPrimeMR(n):
                    ret[n], n = 1, 1
                else:
                    rhoFlg = 1
                    j = findFactorRho(n)
                    k = 0
                    while n % j == 0:
                        n //= j
                        k += 1
                    ret[j] = k

    if n > 1: ret[n] = 1
    if rhoFlg: ret = {x: ret[x] for x in sorted(ret)}
    return ret

def divisors(n):
    res = [1]
    prime = primeFactor(n)
    for p in prime:
        newres = []
        for d in res:
            for j in range(prime[p]+1):
                newres.append(d*p**j)
        res = newres
    return res

for _ in range(int(input())):
    x,y = map(int,input().split())
    div = divisors(x+y)
    count = 0
    for d in div:
        if x!=y:
            if d==1 or d==2:
                continue

            if (x+y)%d!=0 or (x-y)%(d-2)!=0:
                continue

            s = (x + y) // d
            t = (x - y) // (d-2)
            if (s + t) % 2 !=0:
                continue
            b = (s + t) // 2
            c = (s - t) // 2

            if b>0 and c>0:
                count += 1

        else:
            if d==1:
                continue
            if d==2:
                s = (x + y) // d
                count += s - 1
            else:
                if ((x+y) // d) %2 ==0:
                    count += 1

    print(count)
0