結果

問題 No.2767 Add to Divide
ユーザー kaede2020kaede2020
提出日時 2024-05-31 21:58:39
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 674 bytes
コンパイル時間 6,603 ms
コンパイル使用メモリ 335,760 KB
実行使用メモリ 13,640 KB
最終ジャッジ日時 2024-12-20 23:21:36
合計ジャッジ時間 17,024 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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