結果

問題 No.1200 お菓子配り-3
ユーザー chineristACchineristAC
提出日時 2020-08-28 23:02:44
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 994 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 76,780 KB
最終ジャッジ日時 2024-11-14 16:46:01
合計ジャッジ時間 36,988 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,960 KB
testcase_01 AC 42 ms
59,116 KB
testcase_02 AC 44 ms
59,360 KB
testcase_03 AC 43 ms
58,108 KB
testcase_04 AC 44 ms
58,172 KB
testcase_05 AC 43 ms
58,384 KB
testcase_06 AC 46 ms
57,720 KB
testcase_07 AC 72 ms
60,456 KB
testcase_08 AC 73 ms
61,544 KB
testcase_09 AC 72 ms
61,168 KB
testcase_10 AC 72 ms
60,308 KB
testcase_11 AC 74 ms
61,016 KB
testcase_12 AC 320 ms
68,996 KB
testcase_13 AC 320 ms
67,656 KB
testcase_14 AC 326 ms
68,880 KB
testcase_15 AC 325 ms
66,876 KB
testcase_16 AC 320 ms
68,120 KB
testcase_17 AC 1,006 ms
72,980 KB
testcase_18 AC 1,428 ms
76,092 KB
testcase_19 AC 375 ms
68,516 KB
testcase_20 AC 2,685 ms
76,660 KB
testcase_21 AC 2,696 ms
76,024 KB
testcase_22 AC 3,174 ms
75,984 KB
testcase_23 AC 2,682 ms
76,456 KB
testcase_24 AC 2,692 ms
76,032 KB
testcase_25 AC 2,680 ms
76,056 KB
testcase_26 AC 2,690 ms
76,096 KB
testcase_27 AC 38 ms
52,072 KB
testcase_28 TLE -
testcase_29 AC 3,269 ms
75,944 KB
testcase_30 AC 3,262 ms
76,156 KB
testcase_31 AC 38 ms
52,864 KB
testcase_32 AC 38 ms
51,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisors(M):#Mの約数列 O(n^(0.5+e))
    d=[]
    i=1
    while M>=i**2:
        if M%i==0:
            d.append(i)
            if i**2!=M:
                d.append(M//i)
        i=i+1
    return d

import sys

input= sys.stdin.readline

for _ in range(int(input())):
    x,y = map(int,input().split())
    div = divisors(x+y)
    count = 0
    for d in div:
        if x!=y:
            if d==1 or d==2:
                continue

            if (x+y)%d!=0 or (x-y)%(d-2)!=0:
                continue

            s = (x + y) // d
            t = (x - y) // (d-2)
            if (s + t) % 2 !=0:
                continue
            b = (s + t) // 2
            c = (s - t) // 2

            if b>0 and c>0:
                count += 1

        else:
            if d==1:
                continue
            if d==2:
                s = (x + y) // d
                count += s - 1
            else:
                if ((x+y) // d) %2 ==0:
                    count += 1

    print(count)
0