結果

問題 No.192 合成数
ユーザー ぴろずぴろず
提出日時 2015-04-26 22:05:16
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 339 bytes
コンパイル時間 2,715 ms
コンパイル使用メモリ 74,024 KB
実行使用メモリ 54,280 KB
最終ジャッジ日時 2024-10-07 15:22:57
合計ジャッジ時間 7,642 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,184 KB
testcase_01 AC 134 ms
54,040 KB
testcase_02 AC 131 ms
53,852 KB
testcase_03 AC 133 ms
54,052 KB
testcase_04 AC 135 ms
53,836 KB
testcase_05 WA -
testcase_06 AC 133 ms
54,096 KB
testcase_07 AC 135 ms
53,920 KB
testcase_08 AC 136 ms
53,864 KB
testcase_09 AC 132 ms
53,872 KB
testcase_10 WA -
testcase_11 AC 134 ms
54,128 KB
testcase_12 WA -
testcase_13 AC 135 ms
53,984 KB
testcase_14 AC 133 ms
54,064 KB
testcase_15 AC 134 ms
54,100 KB
testcase_16 AC 133 ms
54,044 KB
testcase_17 AC 133 ms
54,168 KB
testcase_18 AC 134 ms
53,944 KB
testcase_19 WA -
testcase_20 AC 132 ms
54,108 KB
testcase_21 AC 133 ms
54,232 KB
testcase_22 AC 135 ms
54,148 KB
testcase_23 AC 133 ms
53,940 KB
testcase_24 AC 133 ms
54,140 KB
testcase_25 AC 134 ms
54,280 KB
testcase_26 AC 133 ms
53,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no192;

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		for(int i=n+100;i>=n-100;i++) {
			for(int j=2;j<i;j++) {
				if (i % j == 0) {
					System.out.println(i);
					return;
				}
			}
		}
		System.out.println("!?");
	}
}
0