結果

問題 No.1200 お菓子配り-3
ユーザー mkawa2mkawa2
提出日時 2022-09-07 01:22:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,696 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 78,356 KB
最終ジャッジ日時 2024-05-01 19:29:02
合計ジャッジ時間 6,173 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
62,852 KB
testcase_01 AC 46 ms
63,120 KB
testcase_02 AC 48 ms
63,424 KB
testcase_03 AC 47 ms
63,632 KB
testcase_04 AC 47 ms
63,528 KB
testcase_05 AC 48 ms
63,624 KB
testcase_06 AC 47 ms
63,456 KB
testcase_07 AC 54 ms
65,364 KB
testcase_08 AC 53 ms
65,496 KB
testcase_09 AC 53 ms
65,584 KB
testcase_10 AC 51 ms
64,732 KB
testcase_11 AC 52 ms
65,268 KB
testcase_12 AC 84 ms
77,468 KB
testcase_13 AC 86 ms
76,800 KB
testcase_14 AC 85 ms
77,500 KB
testcase_15 AC 86 ms
77,056 KB
testcase_16 AC 85 ms
76,896 KB
testcase_17 AC 126 ms
77,176 KB
testcase_18 AC 145 ms
77,608 KB
testcase_19 AC 89 ms
76,800 KB
testcase_20 AC 186 ms
78,008 KB
testcase_21 AC 196 ms
78,204 KB
testcase_22 AC 197 ms
77,888 KB
testcase_23 AC 187 ms
78,208 KB
testcase_24 AC 188 ms
78,356 KB
testcase_25 AC 184 ms
78,080 KB
testcase_26 AC 186 ms
78,132 KB
testcase_27 AC 46 ms
61,568 KB
testcase_28 AC 151 ms
77,496 KB
testcase_29 AC 530 ms
77,156 KB
testcase_30 AC 527 ms
77,416 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# inf = (1 << 31)-1
md = 10**9+7
# md = 998244353

a_max = 500000005
r = round(a_max**0.5)
while r**2 < a_max: r += 1
isp, pp = [1]*(r+1), []
for a in range(2, r+1):
    if isp[a]:
        pp.append(a)
        for b in range(a+a, r+1, a): isp[b] = 0

def factors(a):
    ff = [1]
    for p in pp:
        if a == 1: break
        c = 0
        if p**2 > a:
            p, a, c = a, 1, 1
        else:
            while a%p == 0: c, a = c+1, a//p
        if c == 0: continue
        w, nf = 1, []
        for _ in range(c):
            w *= p
            for f in ff: nf.append(f*w)
        ff += nf
    return ff

# ab+ c=x
#  b+ac=y
# (a-1)(b-c)=x-y

# ab+c=x
#  b-c=z
# (a+1)b=x+z
# b=(x+z)/(a+1)

def solve():
    x, y = LI()
    ans = 0
    if x == y:
        ans = len(factors(x))-1
    else:
        if x < y: x, y = y, x
        for a1 in factors(x-y):
            a = a1+1
            z = (x-y)//a1
            if (x+z)%(a+1) == 0 and (x+z)//(a+1)-z > 0: ans += 1
    print(ans)

for _ in range(II()):
    solve()
0