結果

問題 No.1200 お菓子配り-3
ユーザー titiatitia
提出日時 2024-08-13 02:55:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,115 ms / 4,000 ms
コード長 1,021 bytes
コンパイル時間 489 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,160 KB
最終ジャッジ日時 2024-08-13 02:55:26
合計ジャッジ時間 24,561 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
52,480 KB
testcase_01 AC 44 ms
58,240 KB
testcase_02 AC 47 ms
58,624 KB
testcase_03 AC 43 ms
58,624 KB
testcase_04 AC 41 ms
58,624 KB
testcase_05 AC 45 ms
59,776 KB
testcase_06 AC 44 ms
59,776 KB
testcase_07 AC 91 ms
61,312 KB
testcase_08 AC 63 ms
61,824 KB
testcase_09 AC 61 ms
60,544 KB
testcase_10 AC 74 ms
61,952 KB
testcase_11 AC 60 ms
61,184 KB
testcase_12 AC 216 ms
69,504 KB
testcase_13 AC 220 ms
69,632 KB
testcase_14 AC 215 ms
69,632 KB
testcase_15 AC 200 ms
68,480 KB
testcase_16 AC 199 ms
68,608 KB
testcase_17 AC 639 ms
73,344 KB
testcase_18 AC 893 ms
76,416 KB
testcase_19 AC 251 ms
69,376 KB
testcase_20 AC 1,615 ms
76,592 KB
testcase_21 AC 1,416 ms
77,160 KB
testcase_22 AC 1,949 ms
76,416 KB
testcase_23 AC 1,424 ms
76,928 KB
testcase_24 AC 1,675 ms
76,800 KB
testcase_25 AC 1,657 ms
76,956 KB
testcase_26 AC 1,638 ms
76,588 KB
testcase_27 AC 38 ms
52,608 KB
testcase_28 AC 996 ms
73,992 KB
testcase_29 AC 3,115 ms
73,344 KB
testcase_30 AC 3,069 ms
73,472 KB
testcase_31 AC 36 ms
52,608 KB
testcase_32 AC 36 ms
52,608 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=X-1
        for l in LIST:
            A=l-1
            if A==1:
                continue
            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