結果

問題 No.1200 お菓子配り-3
ユーザー 37zigen37zigen
提出日時 2020-08-29 10:53:30
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 703 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 76,680 KB
最終ジャッジ日時 2024-11-14 17:23:28
合計ジャッジ時間 42,202 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,944 KB
testcase_01 AC 40 ms
58,904 KB
testcase_02 AC 45 ms
58,564 KB
testcase_03 AC 46 ms
60,776 KB
testcase_04 AC 45 ms
59,104 KB
testcase_05 AC 47 ms
59,648 KB
testcase_06 AC 45 ms
59,452 KB
testcase_07 AC 81 ms
63,156 KB
testcase_08 AC 86 ms
63,468 KB
testcase_09 AC 79 ms
62,180 KB
testcase_10 AC 79 ms
62,480 KB
testcase_11 AC 84 ms
63,132 KB
testcase_12 AC 365 ms
70,264 KB
testcase_13 AC 373 ms
70,068 KB
testcase_14 AC 372 ms
69,404 KB
testcase_15 AC 375 ms
71,480 KB
testcase_16 AC 368 ms
69,952 KB
testcase_17 AC 1,179 ms
76,200 KB
testcase_18 AC 1,643 ms
76,152 KB
testcase_19 AC 431 ms
70,516 KB
testcase_20 AC 3,058 ms
76,532 KB
testcase_21 AC 3,135 ms
76,680 KB
testcase_22 AC 3,713 ms
76,452 KB
testcase_23 AC 3,146 ms
76,520 KB
testcase_24 AC 3,139 ms
76,220 KB
testcase_25 AC 3,120 ms
76,088 KB
testcase_26 AC 3,083 ms
76,248 KB
testcase_27 AC 37 ms
52,788 KB
testcase_28 TLE -
testcase_29 AC 3,774 ms
76,184 KB
testcase_30 AC 3,764 ms
76,108 KB
testcase_31 AC 37 ms
52,012 KB
testcase_32 AC 37 ms
60,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# X=A*B+C
# Y=A*C+B
# X+Y=(A+1)(B+C)

S=int(input())
for _ in range(S):
    X,Y=map(int,input().split())
    ans=0
    if X==Y:
        ans=X-1
    d=1
    while d*d<=X+Y:
        if (X+Y)%d!=0:
            d+=1
            continue
        divs=[d]
        if (X+Y)//d!=d:
            divs.append((X+Y)//d)
        for div in divs:
            if div<=2:
                continue
            A=div-1
            # B+C=bc
            # X=AB+C
            # X=AB+bc-B
            # B=(X-bc)//(A-1)
            bc=(X+Y)//div
            B=(X-bc)//(A-1)
            C=bc-B
            if X!=A*B+C or Y!=A*C+B or A<=0 or B<=0 or C<=0:
                continue
            ans+=1
        d+=1
    print(ans)
0