結果

問題 No.1200 お菓子配り-3
ユーザー tatyamtatyam
提出日時 2020-07-19 22:54:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,895 ms / 4,000 ms
コード長 609 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 77,084 KB
最終ジャッジ日時 2024-11-20 22:22:37
合計ジャッジ時間 21,327 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,444 KB
testcase_01 AC 41 ms
58,776 KB
testcase_02 AC 42 ms
58,428 KB
testcase_03 AC 41 ms
58,340 KB
testcase_04 AC 41 ms
58,428 KB
testcase_05 AC 42 ms
58,652 KB
testcase_06 AC 42 ms
57,640 KB
testcase_07 AC 61 ms
62,752 KB
testcase_08 AC 64 ms
61,984 KB
testcase_09 AC 62 ms
62,740 KB
testcase_10 AC 63 ms
62,128 KB
testcase_11 AC 61 ms
62,592 KB
testcase_12 AC 200 ms
73,064 KB
testcase_13 AC 205 ms
73,736 KB
testcase_14 AC 207 ms
73,872 KB
testcase_15 AC 206 ms
73,524 KB
testcase_16 AC 202 ms
74,200 KB
testcase_17 AC 544 ms
76,796 KB
testcase_18 AC 759 ms
76,800 KB
testcase_19 AC 230 ms
73,548 KB
testcase_20 AC 1,379 ms
76,624 KB
testcase_21 AC 1,393 ms
76,900 KB
testcase_22 AC 1,627 ms
76,840 KB
testcase_23 AC 1,400 ms
76,900 KB
testcase_24 AC 1,365 ms
77,028 KB
testcase_25 AC 1,377 ms
76,740 KB
testcase_26 AC 1,385 ms
76,632 KB
testcase_27 AC 38 ms
52,132 KB
testcase_28 AC 1,088 ms
76,600 KB
testcase_29 AC 2,895 ms
77,084 KB
testcase_30 AC 2,894 ms
77,004 KB
testcase_31 AC 37 ms
53,144 KB
testcase_32 AC 37 ms
54,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisor(x):
    ans = []
    for i in range(1, int(x**0.5) + 1):
        if x % i == 0:
            ans.append(i)
            if i * i != x:
                ans.append(x / i)
    return ans

s = int(input())
assert(1 <= s <= 10_000)
for _ in range(s):
    x, y = map(int, input().split())
    assert(1 <= x <= 500_000_000)
    assert(1 <= y <= 500_000_000)
    if x == y:
        print(len(divisor(x)) + x + x % 2 - 3)
        continue
    ans = 0
    if x < y:
        x, y = y, x
    n = x - y
    for d in divisor(n):
        a = n // d + 1
        ans += y > d and not (y - d) % (a + 1)
    print(ans)
0