結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,716 KB
testcase_01 AC 42 ms
58,692 KB
testcase_02 AC 44 ms
59,248 KB
testcase_03 AC 43 ms
58,952 KB
testcase_04 AC 44 ms
59,024 KB
testcase_05 AC 45 ms
57,512 KB
testcase_06 AC 45 ms
59,240 KB
testcase_07 AC 60 ms
59,760 KB
testcase_08 AC 64 ms
60,672 KB
testcase_09 AC 59 ms
59,220 KB
testcase_10 AC 59 ms
59,424 KB
testcase_11 AC 59 ms
61,072 KB
testcase_12 AC 198 ms
70,896 KB
testcase_13 AC 202 ms
70,024 KB
testcase_14 AC 200 ms
70,444 KB
testcase_15 AC 202 ms
70,220 KB
testcase_16 AC 200 ms
70,852 KB
testcase_17 AC 559 ms
76,612 KB
testcase_18 AC 777 ms
76,932 KB
testcase_19 AC 225 ms
71,616 KB
testcase_20 AC 1,405 ms
76,788 KB
testcase_21 AC 1,404 ms
76,612 KB
testcase_22 AC 1,613 ms
76,924 KB
testcase_23 AC 1,354 ms
76,916 KB
testcase_24 AC 1,329 ms
76,532 KB
testcase_25 AC 1,357 ms
77,588 KB
testcase_26 AC 1,337 ms
76,628 KB
testcase_27 AC 38 ms
53,700 KB
testcase_28 AC 1,055 ms
76,720 KB
testcase_29 AC 2,921 ms
76,116 KB
testcase_30 AC 2,889 ms
76,700 KB
testcase_31 AC 38 ms
52,980 KB
testcase_32 AC 37 ms
52,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline

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

def main():
    s = int(input())



    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)

if __name__ == '__main__':
    main()
0