結果

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

ソースコード

diff #

/**
 * @file 2558.cpp
 * @brief yukicoder problem 2558
 * @author Keitaro Naruse
 * @date 2023-12-02
 * @copyright MIT License
 * @details https://yukicoder.me/problems/no/2558
 * */

// # Solution

#include <iostream>

int main( ) {
    //  Read A, B = [ 1, 3*10^3 ], a = [ 0, A ), b = [ 0, B )
    int A, B, a, b;
    std::cin >> A >> B >> a >> b;

    //  Main::Preprocess
    //  Main::Find a solution
    int answer = 0;
    for( int x = 0; x < A * B; x++ ) {
        if( x % A == a && x % B == b ) {
            answer = x;
            break;
        }
    }
    //  Main::Output a solution
    std::cout << answer << std::endl;
    //  Finalize
    return 0;
}
0