結果

問題 No.1200 お菓子配り-3
ユーザー chineristACchineristAC
提出日時 2020-08-28 21:40:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,004 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 76,880 KB
最終ジャッジ日時 2024-11-14 14:27:46
合計ジャッジ時間 42,684 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,556 KB
testcase_01 AC 40 ms
58,336 KB
testcase_02 AC 44 ms
59,404 KB
testcase_03 AC 44 ms
58,236 KB
testcase_04 AC 44 ms
59,536 KB
testcase_05 AC 45 ms
59,324 KB
testcase_06 AC 48 ms
58,600 KB
testcase_07 AC 79 ms
61,748 KB
testcase_08 AC 80 ms
61,420 KB
testcase_09 AC 78 ms
61,232 KB
testcase_10 AC 77 ms
60,684 KB
testcase_11 AC 79 ms
61,424 KB
testcase_12 AC 365 ms
71,564 KB
testcase_13 AC 371 ms
70,548 KB
testcase_14 AC 374 ms
71,292 KB
testcase_15 AC 376 ms
70,804 KB
testcase_16 AC 373 ms
72,808 KB
testcase_17 AC 1,184 ms
76,412 KB
testcase_18 AC 1,671 ms
76,860 KB
testcase_19 AC 434 ms
72,128 KB
testcase_20 AC 3,126 ms
76,488 KB
testcase_21 AC 3,137 ms
76,044 KB
testcase_22 AC 3,693 ms
76,212 KB
testcase_23 AC 3,152 ms
76,272 KB
testcase_24 AC 3,129 ms
76,268 KB
testcase_25 AC 3,115 ms
76,356 KB
testcase_26 AC 3,129 ms
76,880 KB
testcase_27 AC 37 ms
53,360 KB
testcase_28 TLE -
testcase_29 AC 3,756 ms
76,624 KB
testcase_30 AC 3,781 ms
75,904 KB
testcase_31 AC 37 ms
53,208 KB
testcase_32 AC 37 ms
59,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

import sys

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