結果

問題 No.1200 お菓子配り-3
ユーザー 👑 KazunKazun
提出日時 2020-09-22 22:11:15
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 676 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 76,824 KB
最終ジャッジ日時 2024-06-26 21:53:08
合計ジャッジ時間 37,500 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,556 KB
testcase_01 AC 41 ms
57,784 KB
testcase_02 AC 44 ms
58,728 KB
testcase_03 AC 44 ms
58,248 KB
testcase_04 AC 43 ms
58,424 KB
testcase_05 AC 44 ms
59,240 KB
testcase_06 AC 45 ms
58,068 KB
testcase_07 AC 73 ms
62,368 KB
testcase_08 AC 76 ms
60,872 KB
testcase_09 AC 74 ms
61,920 KB
testcase_10 AC 73 ms
61,480 KB
testcase_11 AC 75 ms
60,808 KB
testcase_12 AC 326 ms
69,596 KB
testcase_13 AC 329 ms
70,288 KB
testcase_14 AC 329 ms
69,920 KB
testcase_15 AC 327 ms
70,296 KB
testcase_16 AC 323 ms
69,352 KB
testcase_17 AC 1,027 ms
76,344 KB
testcase_18 AC 1,459 ms
76,588 KB
testcase_19 AC 386 ms
70,576 KB
testcase_20 AC 2,715 ms
76,672 KB
testcase_21 AC 2,724 ms
76,372 KB
testcase_22 AC 3,202 ms
76,476 KB
testcase_23 AC 2,703 ms
76,824 KB
testcase_24 AC 2,727 ms
76,712 KB
testcase_25 AC 2,710 ms
76,412 KB
testcase_26 AC 2,721 ms
76,768 KB
testcase_27 AC 37 ms
52,772 KB
testcase_28 TLE -
testcase_29 AC 3,285 ms
76,340 KB
testcase_30 AC 3,280 ms
76,452 KB
testcase_31 AC 37 ms
53,500 KB
testcase_32 AC 35 ms
52,588 KB
権限があれば一括ダウンロードができます

ソースコード

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())

    D=Divisors(X+Y)

    K=0
    for d in D:
        if d==1:
            continue
        elif d==2:
            if X==Y:
                K+=X-1
        else:
            A=d-1
            B2=A*X-Y
            C2=-X+A*Y

            if B2>0 and C2>0 and B2%(A*A-1)==C2%(A*A-1)==0:
                K+=1
    L[i]=K

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