結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,532 KB
testcase_01 AC 41 ms
58,576 KB
testcase_02 AC 42 ms
58,336 KB
testcase_03 AC 43 ms
59,120 KB
testcase_04 AC 41 ms
59,108 KB
testcase_05 AC 43 ms
58,856 KB
testcase_06 AC 41 ms
58,196 KB
testcase_07 AC 58 ms
60,924 KB
testcase_08 AC 59 ms
60,532 KB
testcase_09 AC 59 ms
61,704 KB
testcase_10 AC 58 ms
61,032 KB
testcase_11 AC 57 ms
60,172 KB
testcase_12 AC 197 ms
76,440 KB
testcase_13 AC 188 ms
76,272 KB
testcase_14 AC 202 ms
76,272 KB
testcase_15 AC 202 ms
75,188 KB
testcase_16 AC 320 ms
76,076 KB
testcase_17 AC 599 ms
77,448 KB
testcase_18 AC 827 ms
77,864 KB
testcase_19 AC 232 ms
76,620 KB
testcase_20 AC 1,490 ms
78,072 KB
testcase_21 AC 1,490 ms
77,888 KB
testcase_22 AC 1,713 ms
78,120 KB
testcase_23 AC 1,468 ms
77,996 KB
testcase_24 AC 1,455 ms
78,136 KB
testcase_25 AC 1,476 ms
77,692 KB
testcase_26 AC 1,437 ms
78,164 KB
testcase_27 WA -
testcase_28 AC 1,040 ms
77,652 KB
testcase_29 AC 2,808 ms
77,192 KB
testcase_30 AC 2,882 ms
77,224 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