結果

問題 No.1200 お菓子配り-3
ユーザー titiatitia
提出日時 2024-08-13 02:51:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,019 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-08-13 02:52:11
合計ジャッジ時間 24,106 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,608 KB
testcase_01 AC 40 ms
57,856 KB
testcase_02 AC 44 ms
58,752 KB
testcase_03 AC 43 ms
58,624 KB
testcase_04 AC 44 ms
58,496 KB
testcase_05 AC 46 ms
59,904 KB
testcase_06 AC 45 ms
59,520 KB
testcase_07 AC 72 ms
61,184 KB
testcase_08 AC 66 ms
61,824 KB
testcase_09 AC 60 ms
60,416 KB
testcase_10 AC 65 ms
61,952 KB
testcase_11 AC 62 ms
61,056 KB
testcase_12 AC 214 ms
68,992 KB
testcase_13 AC 220 ms
69,248 KB
testcase_14 AC 222 ms
69,120 KB
testcase_15 AC 223 ms
68,352 KB
testcase_16 AC 200 ms
68,480 KB
testcase_17 AC 631 ms
72,832 KB
testcase_18 AC 929 ms
76,416 KB
testcase_19 AC 256 ms
69,248 KB
testcase_20 AC 1,655 ms
76,672 KB
testcase_21 AC 1,420 ms
76,928 KB
testcase_22 AC 1,895 ms
76,672 KB
testcase_23 AC 1,423 ms
76,928 KB
testcase_24 AC 1,685 ms
76,672 KB
testcase_25 AC 1,598 ms
76,672 KB
testcase_26 AC 1,621 ms
76,672 KB
testcase_27 AC 37 ms
52,096 KB
testcase_28 AC 1,002 ms
73,856 KB
testcase_29 AC 3,091 ms
73,344 KB
testcase_30 AC 3,096 ms
73,472 KB
testcase_31 WA -
testcase_32 AC 40 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

T=int(input())
for tests in range(T):
    X,Y=map(int,input().split())

    if X==Y:
        xr=round(X**(1/2))
        LIST=[]

        for i in range(1,xr+1):
            if X%i==0:
                LIST.append(i)
                if X//i>i:
                    LIST.append(X//i)
        ANS=0
        for l in LIST:
            A=l-1
            if A==1:
                ANS+=X-1
            else:
                B=X//(A+1)

                if A>0 and B>0:
                    ANS+=1

        print(ANS)
        continue

    if X<Y:
        X,Y=Y,X
    xr=round((X-Y)**(1/2))
    LIST=[]

    for i in range(1,xr+1):
        if (X-Y)%i==0:
            LIST.append(i)
            if (X-Y)//i>i:
                LIST.append((X-Y)//i)
    ANS=0
    for l in LIST:
        A=l+1
        if A>0 and (X+Y)%(A+1)==0:
            k=(X-Y)//(A-1)
            l=(X+Y)//(A+1)

            if (k+l)%2==0 and k+l>0 and (l-k)%2==0 and l-k>0:
                ANS+=1

    print(ANS)
    

    
0