結果

問題 No.192 合成数
ユーザー m4s4k1ch1m4s4k1ch1
提出日時 2015-05-28 15:05:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 585 bytes
コンパイル時間 1,884 ms
コンパイル使用メモリ 72,680 KB
実行使用メモリ 37,248 KB
最終ジャッジ日時 2024-06-27 01:37:54
合計ジャッジ時間 4,372 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,804 KB
testcase_01 AC 48 ms
36,932 KB
testcase_02 AC 48 ms
36,572 KB
testcase_03 AC 50 ms
36,572 KB
testcase_04 AC 51 ms
37,076 KB
testcase_05 AC 53 ms
36,968 KB
testcase_06 AC 50 ms
37,104 KB
testcase_07 AC 51 ms
37,040 KB
testcase_08 AC 49 ms
36,424 KB
testcase_09 AC 52 ms
36,860 KB
testcase_10 AC 52 ms
37,136 KB
testcase_11 AC 51 ms
36,944 KB
testcase_12 AC 50 ms
36,584 KB
testcase_13 AC 53 ms
36,948 KB
testcase_14 AC 50 ms
36,944 KB
testcase_15 AC 48 ms
36,876 KB
testcase_16 AC 49 ms
36,796 KB
testcase_17 AC 49 ms
36,776 KB
testcase_18 AC 51 ms
36,760 KB
testcase_19 AC 49 ms
36,744 KB
testcase_20 AC 49 ms
37,248 KB
testcase_21 AC 49 ms
36,956 KB
testcase_22 AC 49 ms
36,948 KB
testcase_23 AC 50 ms
36,772 KB
testcase_24 AC 49 ms
36,948 KB
testcase_25 AC 50 ms
36,760 KB
testcase_26 AC 48 ms
37,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String args[]) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String line = br.readLine();
		int n = Integer.parseInt(line);
		int min = n - 100;
		if (min < 3) {
			min = 3;
		}
		
		int max = n + 100;
		
		if (n % 2 == 0) {
			System.out.println(n);
			return;
		}
		
		for (int i = min; i < max; i ++) {
			for (int j = 2; j < i; j+=2) {
				if (i % j == 0) {
					System.out.println(i);
					return;
				}
			}
		}
	}
}
0