結果

問題 No.2558 中国剰余定理
ユーザー InTheBloomInTheBloom
提出日時 2023-12-02 14:38:25
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 4,298 ms
コンパイル使用メモリ 171,136 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-26 17:02:19
合計ジャッジ時間 5,103 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main () {
    /* 後でちゃんと解く(多分)今は全探索 */
    int A, B, a, b; readln.read(A, B, a, b);

    int ans = a;
    while (true) {
        if (ans % B == b) break;
        ans += A;
    }

    writeln(ans);
}

void read (T...) (string S, ref T args) {
    auto buf = S.split;
    foreach (i, ref arg; args) {
        arg = buf[i].to!(typeof(arg));
    }
}
0