結果

問題 No.2558 中国剰余定理
ユーザー loop0919loop0919
提出日時 2023-11-14 09:47:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 434 bytes
コンパイル時間 2,048 ms
コンパイル使用メモリ 74,104 KB
実行使用メモリ 41,328 KB
最終ジャッジ日時 2024-09-26 03:32:55
合計ジャッジ時間 6,866 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
39,976 KB
testcase_01 AC 127 ms
41,148 KB
testcase_02 AC 114 ms
39,764 KB
testcase_03 AC 114 ms
39,740 KB
testcase_04 AC 123 ms
41,052 KB
testcase_05 AC 124 ms
41,248 KB
testcase_06 AC 125 ms
41,048 KB
testcase_07 AC 114 ms
40,100 KB
testcase_08 AC 121 ms
41,008 KB
testcase_09 AC 123 ms
41,252 KB
testcase_10 AC 124 ms
41,260 KB
testcase_11 AC 110 ms
39,964 KB
testcase_12 AC 126 ms
40,968 KB
testcase_13 AC 109 ms
39,864 KB
testcase_14 AC 125 ms
41,000 KB
testcase_15 AC 123 ms
40,856 KB
testcase_16 AC 125 ms
41,120 KB
testcase_17 AC 126 ms
41,148 KB
testcase_18 AC 124 ms
41,004 KB
testcase_19 AC 127 ms
41,216 KB
testcase_20 AC 125 ms
41,328 KB
testcase_21 AC 124 ms
41,120 KB
testcase_22 AC 123 ms
41,144 KB
testcase_23 AC 122 ms
40,888 KB
testcase_24 AC 110 ms
39,872 KB
testcase_25 AC 124 ms
40,960 KB
testcase_26 AC 123 ms
40,960 KB
testcase_27 AC 117 ms
40,080 KB
testcase_28 AC 110 ms
39,976 KB
testcase_29 AC 127 ms
41,072 KB
testcase_30 AC 118 ms
41,128 KB
testcase_31 AC 122 ms
41,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int A = sc.nextInt();
        int B = sc.nextInt();
        int a = sc.nextInt();
        int b = sc.nextInt();
        
        for (int x = a; true; x += A) {
            if (x % B == b) {
                System.out.println(x);
                return;
            }
        }
    }
}
0