結果

問題 No.1200 お菓子配り-3
ユーザー tamatotamato
提出日時 2020-08-28 21:44:33
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,152 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 76,840 KB
最終ジャッジ日時 2024-11-14 14:30:23
合計ジャッジ時間 40,677 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,932 KB
testcase_01 AC 40 ms
57,800 KB
testcase_02 AC 43 ms
58,240 KB
testcase_03 AC 43 ms
58,844 KB
testcase_04 AC 43 ms
57,768 KB
testcase_05 AC 43 ms
59,852 KB
testcase_06 AC 42 ms
58,432 KB
testcase_07 AC 73 ms
61,500 KB
testcase_08 AC 75 ms
60,712 KB
testcase_09 AC 74 ms
60,512 KB
testcase_10 AC 73 ms
60,124 KB
testcase_11 AC 75 ms
60,044 KB
testcase_12 AC 351 ms
69,216 KB
testcase_13 AC 355 ms
69,556 KB
testcase_14 AC 355 ms
69,376 KB
testcase_15 AC 354 ms
69,304 KB
testcase_16 AC 357 ms
68,580 KB
testcase_17 AC 1,130 ms
76,540 KB
testcase_18 AC 1,590 ms
76,768 KB
testcase_19 AC 414 ms
69,680 KB
testcase_20 AC 3,006 ms
76,808 KB
testcase_21 AC 2,980 ms
76,740 KB
testcase_22 AC 3,520 ms
76,840 KB
testcase_23 AC 2,979 ms
76,260 KB
testcase_24 AC 2,980 ms
76,168 KB
testcase_25 AC 2,962 ms
76,268 KB
testcase_26 AC 2,975 ms
76,460 KB
testcase_27 AC 39 ms
54,812 KB
testcase_28 TLE -
testcase_29 AC 3,640 ms
76,572 KB
testcase_30 AC 3,644 ms
76,328 KB
testcase_31 AC 37 ms
53,212 KB
testcase_32 AC 36 ms
53,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.buffer.readline

    def divisors(n):
        ret = []
        for d in range(1, n+1):
            if d * d > n:
                break
            if n%d == 0:
                ret.append(d)
                ret.append(n//d)
        if ret[-1] == ret[-2]:
            ret.pop()
        return ret

    for _ in range(int(input())):
        x, y = map(int, input().split())
        if x < y:
            x, y = y, x

        xy = x+y
        div = divisors(xy)
        ans = 0
        for d in div:
            a = d - 1
            if a == 0:
                continue
            bc = xy // (a+1)
            if a == 1:
                if x == y:
                    ans += x-1
                    continue
                else:
                    continue
            if (x-y) % (a-1) != 0:
                continue
            b_c = (x-y) // (a-1)
            if bc%2 == b_c%2:
                b = (bc + b_c)//2
                c = (bc - b_c)//2
                if b > 0 and c > 0:
                    ans += 1
        print(ans)


if __name__ == '__main__':
    main()
0