結果

問題 No.2767 Add to Divide
ユーザー H3PO4H3PO4
提出日時 2024-05-31 21:38:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 309 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,824 KB
最終ジャッジ日時 2024-05-31 21:38:19
合計ジャッジ時間 6,103 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
17,696 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 31 ms
10,752 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(A: int, B:int):
    for x in range(10 ** 5):
        if (B + x) % (A + x) == 0:
            return x
    for n in range(10 ** 5, 1, -1):
        if (B - n * A) % (n - 1) == 0:
            return (B - n * A) // (n - 1)

T = int(input())
for _ in range(T):
    print(solve(*map(int, input().split())))
0