結果

問題 No.2558 中国剰余定理
ユーザー Hayato2475Hayato2475
提出日時 2023-12-02 14:41:53
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 5,286 ms
コンパイル使用メモリ 306,120 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-26 17:10:24
合計ジャッジ時間 6,204 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/all>
#include <bits/stdc++.h>
typedef long long ll;
using namespace std;
#define rep(i,a,n) for (int i = a; i < (n); i++)
template<typename T> inline bool chmax(T& a, T b) { return ((a < b) ? (a = b, true) : (false)); }
template<typename T> inline bool chmin(T& a, T b) { return ((a > b) ? (a = b, true) : (false)); }

int main() {
    int a,b,la,lb;
    cin >> a >> b >> la >> lb;
    int mini = max(a,b);
    for(int i=0;;i++){
        if(i % a == la && i % b == lb){
            cout << i << endl;
            return 0;
        }
    }
}
0