結果

問題 No.1200 お菓子配り-3
ユーザー brthyyjpbrthyyjp
提出日時 2020-08-28 22:57:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,042 ms / 4,000 ms
コード長 1,104 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 77,764 KB
最終ジャッジ日時 2024-11-20 22:46:42
合計ジャッジ時間 22,588 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,264 KB
testcase_01 AC 41 ms
58,652 KB
testcase_02 AC 42 ms
58,200 KB
testcase_03 AC 43 ms
59,036 KB
testcase_04 AC 44 ms
57,976 KB
testcase_05 AC 45 ms
59,232 KB
testcase_06 AC 45 ms
59,220 KB
testcase_07 AC 61 ms
60,052 KB
testcase_08 AC 62 ms
60,584 KB
testcase_09 AC 61 ms
60,264 KB
testcase_10 AC 60 ms
59,816 KB
testcase_11 AC 61 ms
61,888 KB
testcase_12 AC 225 ms
77,280 KB
testcase_13 AC 228 ms
77,092 KB
testcase_14 AC 223 ms
77,484 KB
testcase_15 AC 228 ms
77,088 KB
testcase_16 AC 227 ms
77,152 KB
testcase_17 AC 596 ms
77,764 KB
testcase_18 AC 808 ms
77,244 KB
testcase_19 AC 258 ms
77,420 KB
testcase_20 AC 1,467 ms
77,056 KB
testcase_21 AC 1,460 ms
77,152 KB
testcase_22 AC 1,700 ms
76,928 KB
testcase_23 AC 1,467 ms
77,300 KB
testcase_24 AC 1,464 ms
77,508 KB
testcase_25 AC 1,457 ms
77,232 KB
testcase_26 AC 1,455 ms
76,796 KB
testcase_27 AC 39 ms
53,904 KB
testcase_28 AC 1,139 ms
76,684 KB
testcase_29 AC 3,042 ms
77,296 KB
testcase_30 AC 3,042 ms
77,040 KB
testcase_31 AC 41 ms
52,512 KB
testcase_32 AC 39 ms
52,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = int(input())

def make_divisors(n):
    divisors = []
    for i in range(1, int(n**0.5)+1):
        if n % i == 0:
            divisors.append(i)
            if i != n // i:
                divisors.append(n//i)

    #divisors.sort(reverse=True)
    return divisors

for _ in range(s):
    x, y = map(int, input().split())
    t = x-y
    if t == 0:
        ans = x-1
        D = make_divisors(x)
        if x%2 == 0:
            for d in D:
                if d >= 3:
                    ans += 1
        else:
            for d in D:
                if d >= 2:
                    ans += 1
        print(ans)
    elif t > 0:
        D = make_divisors(t)
        ans = 0
        for d in D:
            a = d+1
            if (a*y-x)>0 and (a*y-x)%(a**2-1) == 0 and (a*x-y)>0 and (a*x-y)%(a**2-1) == 0:
                 ans += 1
        print(ans)
    else:
        t = (-1)*t
        D = make_divisors(t)
        ans = 0
        for d in D:
            a = d+1
            if (a*y-x)>0 and (a*y-x)%(a**2-1) == 0 and (a*x-y)>0 and (a*x-y)%(a**2-1) == 0:
                 ans += 1
        print(ans)
0