結果

問題 No.1200 お菓子配り-3
ユーザー 37zigen37zigen
提出日時 2020-08-29 10:58:33
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 727 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 127,072 KB
最終ジャッジ日時 2024-11-14 17:24:11
合計ジャッジ時間 41,542 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,616 KB
testcase_01 AC 41 ms
58,300 KB
testcase_02 AC 47 ms
58,492 KB
testcase_03 AC 45 ms
60,236 KB
testcase_04 AC 46 ms
59,564 KB
testcase_05 AC 48 ms
60,548 KB
testcase_06 AC 46 ms
58,916 KB
testcase_07 AC 80 ms
63,372 KB
testcase_08 AC 81 ms
63,252 KB
testcase_09 AC 76 ms
61,536 KB
testcase_10 AC 79 ms
61,292 KB
testcase_11 AC 81 ms
63,312 KB
testcase_12 AC 358 ms
67,972 KB
testcase_13 AC 363 ms
68,180 KB
testcase_14 AC 364 ms
67,524 KB
testcase_15 AC 365 ms
67,456 KB
testcase_16 AC 360 ms
67,840 KB
testcase_17 AC 1,156 ms
73,660 KB
testcase_18 AC 1,613 ms
76,392 KB
testcase_19 AC 416 ms
68,176 KB
testcase_20 AC 3,009 ms
76,012 KB
testcase_21 AC 3,056 ms
75,928 KB
testcase_22 AC 3,629 ms
75,936 KB
testcase_23 AC 3,072 ms
75,752 KB
testcase_24 AC 3,063 ms
76,388 KB
testcase_25 AC 3,065 ms
75,672 KB
testcase_26 AC 3,025 ms
75,892 KB
testcase_27 AC 38 ms
52,392 KB
testcase_28 TLE -
testcase_29 AC 3,715 ms
75,776 KB
testcase_30 AC 3,716 ms
75,660 KB
testcase_31 AC 38 ms
52,540 KB
testcase_32 AC 38 ms
127,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
# 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,sys.stdin.readline().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