結果

問題 No.2767 Add to Divide
ユーザー kaede2020kaede2020
提出日時 2024-05-31 21:58:39
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 674 bytes
コンパイル時間 5,733 ms
コンパイル使用メモリ 336,264 KB
実行使用メモリ 13,888 KB
最終ジャッジ日時 2024-05-31 21:58:50
合計ジャッジ時間 9,125 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
#define ll long long
#define rep(i, n) for (ll i = 0; i < (ll)(n); i++)
//using mint = modint998244353;
const int dx[4]={0,1,0,-1};
const int dy[4]={1,0,-1,0};

ll f(ll a,ll b){
    ll c=1;
    vector<ll>ans;
    if(b%a==0)return 0;
    while(b-a*c>=c-1&&b-a*c>0){
        c++;
        ll d=(b-a*c)%(c-1);
        ll e=(b-a*c)/(c-1);
        if(d==0&&e>0)ans.push_back (e);
    }
    if(!ans.empty())return ans[ans.size()-1];
    return -1;
}

int main() {
    int t;
    cin>>t;
    while(t--){
        ll a,b;
        cin>>a>>b;
        cout<<f(a,b)<<endl;
    }
    return 0;
}
0