結果

問題 No.3498 Modulo Equation
コンテスト
ユーザー shinji_mm
提出日時 2026-04-17 20:43:54
言語 C++23
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 639 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 3,308 ms
コンパイル使用メモリ 329,488 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2026-04-17 20:44:11
合計ジャッジ時間 6,274 ms
ジャッジサーバーID
(参考情報)
judge1_1 / judge3_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include<bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0; i < int(n); i++)
#define FOR(i,a,b) for(ll i = a; i < (ll)(b); i++)
#define all(a) (a).begin(),(a).end()
using ll = long long;
using VI = vector<long long>;
using P = pair<long long,long long>;
const long long INF = 1LL << 60;
const int DX[] = {1,0,-1,0};
const int DY[] = {0,1,0,-1};

int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);

    ll a,b;
    cin >> a >> b;
    ll res = -1;
    for(int x = 1; x <= 100000; x++){
        if((x%a == b%x)&&(res == -1)){
            res = x;
        }
    }

    cout << res << endl;
    return 0;
}
0