結果

問題 No.2558 中国剰余定理
ユーザー viral8viral8
提出日時 2023-12-02 14:33:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 580 bytes
コンパイル時間 2,192 ms
コンパイル使用メモリ 74,340 KB
実行使用メモリ 37,752 KB
最終ジャッジ日時 2024-09-26 16:49:08
合計ジャッジ時間 5,317 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
36,580 KB
testcase_01 AC 54 ms
36,952 KB
testcase_02 AC 74 ms
37,532 KB
testcase_03 AC 53 ms
36,460 KB
testcase_04 AC 95 ms
37,620 KB
testcase_05 AC 54 ms
37,072 KB
testcase_06 AC 55 ms
37,068 KB
testcase_07 AC 53 ms
37,028 KB
testcase_08 AC 70 ms
37,572 KB
testcase_09 AC 55 ms
36,888 KB
testcase_10 AC 68 ms
37,184 KB
testcase_11 AC 69 ms
37,440 KB
testcase_12 AC 57 ms
36,860 KB
testcase_13 AC 55 ms
36,964 KB
testcase_14 AC 54 ms
36,568 KB
testcase_15 AC 57 ms
36,712 KB
testcase_16 AC 70 ms
37,584 KB
testcase_17 AC 53 ms
36,860 KB
testcase_18 AC 73 ms
37,740 KB
testcase_19 AC 75 ms
37,628 KB
testcase_20 AC 63 ms
37,212 KB
testcase_21 AC 66 ms
37,624 KB
testcase_22 AC 53 ms
36,960 KB
testcase_23 AC 55 ms
36,968 KB
testcase_24 AC 74 ms
37,624 KB
testcase_25 AC 74 ms
37,364 KB
testcase_26 AC 54 ms
37,168 KB
testcase_27 AC 55 ms
36,456 KB
testcase_28 AC 69 ms
37,752 KB
testcase_29 AC 53 ms
36,448 KB
testcase_30 AC 64 ms
36,844 KB
testcase_31 AC 57 ms
37,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
class Main{
	private static final BufferedReader br =
		new BufferedReader(new InputStreamReader(System.in));
	private static final PrintWriter out =
		new PrintWriter(System.out);
	public static void main(String[] args)throws IOException{

		String[] str = br.readLine().split(" ");
		int A = Integer.parseInt(str[0]);
		int B = Integer.parseInt(str[1]);
		int a = Integer.parseInt(str[2]);
		int b = Integer.parseInt(str[3]);
		for(int i=0;;i++)
			if(i%A==a&&i%B==b){
				out.println(i);
				break;
			}

		br.close();
		out.close();
	}
}
0