結果

問題 No.1200 お菓子配り-3
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-10-01 17:06:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,362 ms / 4,000 ms
コード長 802 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-11-20 23:16:49
合計ジャッジ時間 23,745 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 42 ms
57,344 KB
testcase_02 AC 42 ms
57,728 KB
testcase_03 AC 45 ms
57,344 KB
testcase_04 AC 44 ms
57,472 KB
testcase_05 AC 44 ms
57,472 KB
testcase_06 AC 44 ms
57,216 KB
testcase_07 AC 62 ms
59,264 KB
testcase_08 AC 63 ms
59,520 KB
testcase_09 AC 60 ms
59,648 KB
testcase_10 AC 61 ms
59,264 KB
testcase_11 AC 60 ms
59,264 KB
testcase_12 AC 211 ms
69,760 KB
testcase_13 AC 215 ms
68,992 KB
testcase_14 AC 214 ms
69,760 KB
testcase_15 AC 217 ms
69,248 KB
testcase_16 AC 214 ms
69,632 KB
testcase_17 AC 609 ms
75,904 KB
testcase_18 AC 843 ms
75,904 KB
testcase_19 AC 243 ms
70,016 KB
testcase_20 AC 1,552 ms
76,288 KB
testcase_21 AC 1,541 ms
76,704 KB
testcase_22 AC 1,802 ms
76,160 KB
testcase_23 AC 1,548 ms
76,288 KB
testcase_24 AC 1,514 ms
76,032 KB
testcase_25 AC 1,531 ms
76,800 KB
testcase_26 AC 1,526 ms
76,160 KB
testcase_27 AC 39 ms
52,224 KB
testcase_28 AC 1,212 ms
76,160 KB
testcase_29 AC 3,353 ms
76,316 KB
testcase_30 AC 3,362 ms
76,032 KB
testcase_31 AC 40 ms
52,096 KB
testcase_32 AC 39 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def main():
    input = sys.stdin.readline
    def make_divisors(n):
        lower_divisors , upper_divisors = [], []
        i = 1
        while i*i <= n:
            if n % i == 0:
                lower_divisors.append(i)
                if i != n // i:
                    upper_divisors.append(n//i)
            i += 1
        return lower_divisors + upper_divisors[::-1]
    Q = int(input())
    for _ in range(Q):
        x, y = map(int, input().split())
        if x == y:
            print(len(make_divisors(x)) + x - 3 + x % 2)
            continue
        ans = 0
        m = abs(x - y)
        mi = min(x, y)
        for i in make_divisors(m):
            n = m // i + 1
            ans += i < mi and not (mi - i) % (n + 1)
        print(ans)
if __name__ == "__main__":
    main()
0