結果

問題 No.1200 お菓子配り-3
ユーザー neterukunneterukun
提出日時 2020-08-28 22:09:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,325 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 78,436 KB
最終ジャッジ日時 2024-11-14 15:20:24
合計ジャッジ時間 20,012 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,944 KB
testcase_01 AC 40 ms
58,552 KB
testcase_02 AC 44 ms
58,384 KB
testcase_03 AC 41 ms
58,840 KB
testcase_04 AC 45 ms
59,912 KB
testcase_05 AC 42 ms
58,384 KB
testcase_06 AC 42 ms
58,444 KB
testcase_07 AC 58 ms
60,292 KB
testcase_08 AC 60 ms
61,428 KB
testcase_09 AC 57 ms
60,196 KB
testcase_10 AC 57 ms
61,016 KB
testcase_11 AC 55 ms
60,124 KB
testcase_12 AC 189 ms
69,020 KB
testcase_13 AC 191 ms
68,420 KB
testcase_14 AC 191 ms
68,576 KB
testcase_15 AC 194 ms
69,520 KB
testcase_16 AC 191 ms
69,268 KB
testcase_17 AC 545 ms
74,660 KB
testcase_18 AC 752 ms
76,992 KB
testcase_19 AC 216 ms
69,200 KB
testcase_20 AC 1,397 ms
77,440 KB
testcase_21 AC 1,394 ms
77,624 KB
testcase_22 AC 1,636 ms
78,436 KB
testcase_23 AC 1,401 ms
78,000 KB
testcase_24 AC 1,375 ms
77,560 KB
testcase_25 AC 1,389 ms
78,020 KB
testcase_26 AC 1,393 ms
77,624 KB
testcase_27 AC 36 ms
53,040 KB
testcase_28 AC 900 ms
77,720 KB
testcase_29 AC 2,397 ms
77,760 KB
testcase_30 AC 2,399 ms
78,056 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline


def make_divisors(n: int) -> list:
    """自然数nの約数を列挙したリストを出力する
    計算量: O(sqrt(N))
    入出力例: 12 -> [1, 2, 3, 4, 6, 12]
    """
    divisors = []
    for k in range(1, int(n ** 0.5) + 1):
        if n % k == 0:
            divisors.append(k)
            if k != n // k: 
                divisors.append(n // k)
    return divisors


s = int(input())
memo = {}
for _ in range(s):
    x, y = map(int, input().split())
    
    if x < y:
        x, y = y, x
    
    sum_ = x + y
    diff = x - y
    
    cnt = 0
    if (x, y) in memo:
        print(memo[x, y])
        continue

    if diff == 0:
        cnt += x - 1
        # b * (a + 1) = x
        divisors = make_divisors(x)
        cnt += (len(divisors) - 1)
        memo[(x, y)] = cnt
        print(cnt)
        continue

    divisors = make_divisors(diff)
    for div in divisors:
        a = div + 1
  
        # b + c = sum_ // (a + 1)
        # b - c = diff // (a - 1)
        if sum_ % (a + 1) != 0:
            continue

        t1 = sum_ // (a + 1)
        t2 = diff // (a - 1)

        if (t1 + t2) % 2 == 1:
            continue
        b, c = (t1 + t2) // 2, (t1 - t2) // 2

        if b > 0 and c > 0:
            cnt += 1
    memo[(x, y)] = cnt
    print(cnt)
0