結果

問題 No.1200 お菓子配り-3
ユーザー 👑 KazunKazun
提出日時 2020-08-28 23:08:48
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 616 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 130,348 KB
最終ジャッジ日時 2024-11-14 16:56:05
合計ジャッジ時間 54,979 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
129,760 KB
testcase_01 AC 42 ms
64,668 KB
testcase_02 AC 49 ms
65,060 KB
testcase_03 AC 46 ms
65,864 KB
testcase_04 AC 46 ms
58,744 KB
testcase_05 AC 46 ms
58,124 KB
testcase_06 AC 47 ms
59,260 KB
testcase_07 AC 90 ms
61,856 KB
testcase_08 AC 93 ms
60,744 KB
testcase_09 AC 89 ms
62,296 KB
testcase_10 AC 88 ms
61,792 KB
testcase_11 AC 89 ms
61,888 KB
testcase_12 AC 473 ms
73,828 KB
testcase_13 AC 488 ms
74,072 KB
testcase_14 AC 490 ms
74,572 KB
testcase_15 AC 487 ms
73,952 KB
testcase_16 AC 477 ms
74,392 KB
testcase_17 AC 1,594 ms
77,568 KB
testcase_18 AC 2,270 ms
77,544 KB
testcase_19 AC 574 ms
75,784 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 39 ms
52,376 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#約数全部
def Divisors(N):
    N=abs(N)
    L,U=[],[]
    k=1
    while k*k <=N:
        if N%k== 0:
            L.append(k)
            if k!=N//k:
                U.append(N//k)
        k+=1
    return L+U[::-1]
#====================================
S=int(input())
L=[0]*S
for i in range(S):
    X,Y=map(int,input().split())

    P=set(map(lambda x:x-1,Divisors(X+Y)))
    Q=set(map(lambda x:x+1,Divisors(X-Y)))
    R=P&Q

    K=0
    for a in R:
        B=(a*X-Y)//(a*a-1)
        C=(a*Y-X)//(a*a-1)
        K+=(B>0 and C>0  and B*(a*a-1)==a*X-Y and C*(a*a-1)==a*Y-X)

    L[i]=K

print("\n".join(map(str,L)))
0