結果

問題 No.2767 Add to Divide
ユーザー nononnonon
提出日時 2024-05-31 21:46:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 586 bytes
コンパイル時間 2,208 ms
コンパイル使用メモリ 200,388 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-20 23:03:38
合計ジャッジ時間 4,520 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
5,248 KB
testcase_01 AC 11 ms
5,248 KB
testcase_02 AC 24 ms
5,248 KB
testcase_03 AC 108 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 111 ms
5,248 KB
testcase_06 AC 111 ms
5,248 KB
testcase_07 AC 109 ms
5,248 KB
testcase_08 AC 111 ms
5,248 KB
testcase_09 AC 110 ms
5,248 KB
testcase_10 AC 110 ms
5,248 KB
testcase_11 AC 125 ms
5,248 KB
testcase_12 AC 108 ms
5,248 KB
testcase_13 AC 120 ms
5,248 KB
testcase_14 AC 118 ms
5,248 KB
testcase_15 AC 143 ms
5,248 KB
testcase_16 AC 142 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int T;
    cin>>T;
    while(T--)
    {
        long A,B;
        cin>>A>>B;
        int ans=1<<30;
        for(int X=0;X<=100000;X++)if((B+X)%(A+X)==0)
        {
            ans=X;
            break;
        }
        for(int k=2;B-k*A>=0&&k<=100000;k++)
        {
            if((B-k*A)%(k-1)==0)
            {
                int X=(B-k*A)/(k-1);
                ans=min(ans,X);
            }
        }
        if(ans==1<<30)ans=-1;
        cout<<ans<<'\n';
    }
}
0