結果

問題 No.1200 お菓子配り-3
ユーザー H3PO4H3PO4
提出日時 2022-01-22 09:38:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 605 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-05-05 08:11:56
合計ジャッジ時間 21,027 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,736 KB
testcase_01 AC 39 ms
57,088 KB
testcase_02 AC 41 ms
57,728 KB
testcase_03 AC 40 ms
57,984 KB
testcase_04 AC 39 ms
57,344 KB
testcase_05 AC 40 ms
57,344 KB
testcase_06 AC 39 ms
57,600 KB
testcase_07 AC 53 ms
59,392 KB
testcase_08 AC 56 ms
60,160 KB
testcase_09 AC 56 ms
60,416 KB
testcase_10 AC 57 ms
59,776 KB
testcase_11 AC 57 ms
60,160 KB
testcase_12 AC 190 ms
75,904 KB
testcase_13 AC 199 ms
76,416 KB
testcase_14 AC 199 ms
76,472 KB
testcase_15 AC 203 ms
74,932 KB
testcase_16 AC 204 ms
76,056 KB
testcase_17 AC 548 ms
77,552 KB
testcase_18 AC 752 ms
77,824 KB
testcase_19 AC 219 ms
76,288 KB
testcase_20 AC 1,338 ms
78,080 KB
testcase_21 AC 1,320 ms
77,760 KB
testcase_22 AC 1,551 ms
77,696 KB
testcase_23 AC 1,359 ms
77,412 KB
testcase_24 AC 1,360 ms
77,568 KB
testcase_25 AC 1,345 ms
77,464 KB
testcase_26 AC 1,338 ms
77,568 KB
testcase_27 WA -
testcase_28 AC 1,028 ms
77,676 KB
testcase_29 AC 2,740 ms
77,088 KB
testcase_30 AC 2,738 ms
77,424 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline


def make_divisors(n):
    for i in range(1, int(n ** 0.5) + 1):
        if n % i == 0:
            yield i
            if i != n // i:
                yield n // i


def solve(X, Y):
    res = 0
    if X == Y: res += X + 1
    for div in make_divisors(abs(X - Y)):
        if (X + Y) % (div + 2):
            continue
        BpC = (X + Y) // (div + 2)
        BmC = abs(X - Y) // div
        if BpC >= BmC and not (BpC & 1) ^ (BmC & 1):
            res += 1
    return res


S = int(input())
for _ in range(S):
    print(solve(*map(int, input().split())))
0