結果

問題 No.1200 お菓子配り-3
ユーザー 👑 KazunKazun
提出日時 2020-08-28 22:14:11
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 613 bytes
コンパイル時間 584 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 76,796 KB
最終ジャッジ日時 2024-11-14 15:28:27
合計ジャッジ時間 37,744 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,936 KB
testcase_01 AC 42 ms
57,732 KB
testcase_02 AC 46 ms
59,280 KB
testcase_03 AC 45 ms
58,472 KB
testcase_04 AC 43 ms
59,044 KB
testcase_05 AC 46 ms
58,612 KB
testcase_06 AC 44 ms
58,064 KB
testcase_07 AC 73 ms
61,496 KB
testcase_08 AC 74 ms
60,876 KB
testcase_09 AC 73 ms
61,948 KB
testcase_10 AC 74 ms
61,932 KB
testcase_11 AC 76 ms
60,944 KB
testcase_12 AC 323 ms
69,684 KB
testcase_13 AC 330 ms
70,852 KB
testcase_14 AC 330 ms
70,124 KB
testcase_15 AC 331 ms
70,504 KB
testcase_16 AC 326 ms
70,116 KB
testcase_17 AC 1,029 ms
76,496 KB
testcase_18 AC 1,458 ms
76,344 KB
testcase_19 AC 383 ms
71,584 KB
testcase_20 AC 2,720 ms
76,412 KB
testcase_21 AC 2,725 ms
76,384 KB
testcase_22 AC 3,221 ms
76,348 KB
testcase_23 AC 2,735 ms
76,628 KB
testcase_24 AC 2,716 ms
76,468 KB
testcase_25 AC 2,734 ms
76,772 KB
testcase_26 AC 2,725 ms
76,532 KB
testcase_27 AC 38 ms
52,260 KB
testcase_28 TLE -
testcase_29 AC 3,303 ms
76,796 KB
testcase_30 AC 3,295 ms
76,740 KB
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())
    D=Divisors(X+Y)[1:]

    K=0
    for a in D:
        if a==2:
            K+=(X==Y)
        else:
            p=a-1
            B=(p*X-Y)
            C=(-X+p*Y)
            if B>0 and C>0 and B%(p*p-1)==C%(p*p-1)==0:
                K+=1
    L[i]=K

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