結果

問題 No.1200 お菓子配り-3
ユーザー chielochielo
提出日時 2020-08-28 22:40:05
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,557 bytes
コンパイル時間 409 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 135,740 KB
最終ジャッジ日時 2024-11-14 16:10:25
合計ジャッジ時間 56,301 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
130,076 KB
testcase_01 AC 42 ms
65,300 KB
testcase_02 AC 48 ms
66,560 KB
testcase_03 AC 49 ms
135,740 KB
testcase_04 AC 49 ms
65,864 KB
testcase_05 AC 51 ms
66,452 KB
testcase_06 AC 48 ms
59,332 KB
testcase_07 AC 101 ms
64,964 KB
testcase_08 AC 102 ms
63,776 KB
testcase_09 AC 96 ms
62,844 KB
testcase_10 AC 97 ms
63,308 KB
testcase_11 AC 97 ms
63,044 KB
testcase_12 AC 514 ms
76,360 KB
testcase_13 AC 516 ms
75,148 KB
testcase_14 AC 528 ms
76,288 KB
testcase_15 AC 524 ms
76,396 KB
testcase_16 AC 510 ms
74,080 KB
testcase_17 AC 1,675 ms
76,680 KB
testcase_18 AC 2,376 ms
76,808 KB
testcase_19 AC 607 ms
76,412 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 38 ms
53,072 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def subsolve(x):
    ans = 0
    for i in range(1, x):
        if i * i > x:
            break
        if x % i:
            continue
        if x // i - 1 > 0:
            ans += 1
        if x != i * i and x // (x // i) - 1 > 0:
            ans += 1
    ans += x
    print(ans)

def solve():
    x, y = map(int, input().split())
    if x == y:
        subsolve(x)
        return
    if x < y:
        x, y = y, x
    ans = 0
    su, sv, tu, tv = [], [], [], []
    for a in range(1, x + y):
        if a * a > x + y:
            break
        if (x + y) % a:
            continue
        su.append(a - 1)
        if (x + y) // a != a:
            sv.append((x + y) // a - 1)
    for a in range(1, x - y):
        if a * a > x - y:
            break
        if (x - y) % a:
            continue
        tu.append(a + 1)
        if (x - y) // a != a:
            tv.append((x - y) // a + 1)
    sv.reverse()
    s = su
    s.extend(sv)
    tv.reverse()
    t = tu
    t.extend(tv)
    i, j = 0, 0
    ans = 0
    while i < len(s) and j < len(t):
        if s[i] != t[j]:
            if s[i] < t[j]:
                i += 1
            else:
                j += 1
        else:
            a = s[i]
            if a - 1 > 0:
                bpc = (x + y) // (a + 1)
                bmc = (x - y) // (a - 1)
                b = (bpc + bmc) // 2
                c = x - a * b
                if b > 0 and c > 0 and a * c + b == y:
                    ans += 1
            i += 1
            j += 1
    print(ans)
t = int(input())
for _ in range(t):
    solve()
0