結果

問題 No.1200 お菓子配り-3
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-10-01 17:01:41
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 656 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 83,476 KB
最終ジャッジ日時 2024-07-07 01:25:04
合計ジャッジ時間 38,390 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,140 KB
testcase_01 AC 34 ms
57,088 KB
testcase_02 AC 40 ms
57,984 KB
testcase_03 AC 42 ms
57,600 KB
testcase_04 AC 40 ms
58,112 KB
testcase_05 AC 40 ms
57,472 KB
testcase_06 AC 39 ms
57,728 KB
testcase_07 AC 75 ms
61,312 KB
testcase_08 AC 81 ms
61,184 KB
testcase_09 AC 81 ms
61,568 KB
testcase_10 AC 75 ms
61,184 KB
testcase_11 AC 75 ms
61,184 KB
testcase_12 AC 382 ms
77,032 KB
testcase_13 AC 390 ms
76,852 KB
testcase_14 AC 377 ms
76,796 KB
testcase_15 AC 378 ms
76,544 KB
testcase_16 AC 384 ms
76,744 KB
testcase_17 AC 1,161 ms
76,800 KB
testcase_18 AC 1,647 ms
76,888 KB
testcase_19 AC 444 ms
76,752 KB
testcase_20 AC 3,119 ms
76,800 KB
testcase_21 AC 3,125 ms
76,800 KB
testcase_22 AC 3,679 ms
77,740 KB
testcase_23 AC 3,114 ms
76,928 KB
testcase_24 AC 3,102 ms
77,144 KB
testcase_25 AC 3,087 ms
76,800 KB
testcase_26 AC 3,083 ms
76,544 KB
testcase_27 AC 34 ms
52,096 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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())
    div = make_divisors(x)
    if x == y:
        print(len(div) + x - 3 + x % 2)
        continue
    ans = 0
    m = abs(x - y)
    div2 = make_divisors(m)
    for i in div2:
        n = m // i + 1
        ans += 1 if i < min(x, y) and (min(x, y) - i) % (n + 1) == 0 else 0
    print(ans)
0