結果

問題 No.192 合成数
ユーザー 37zigen37zigen
提出日時 2016-03-31 12:24:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 309 bytes
コンパイル時間 2,282 ms
コンパイル使用メモリ 79,016 KB
実行使用メモリ 54,488 KB
最終ジャッジ日時 2024-10-07 15:37:27
合計ジャッジ時間 6,818 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 116 ms
53,924 KB
testcase_02 AC 120 ms
54,216 KB
testcase_03 AC 107 ms
53,160 KB
testcase_04 AC 119 ms
54,120 KB
testcase_05 AC 119 ms
54,060 KB
testcase_06 AC 118 ms
53,884 KB
testcase_07 AC 119 ms
54,228 KB
testcase_08 AC 118 ms
54,100 KB
testcase_09 AC 118 ms
53,864 KB
testcase_10 AC 113 ms
53,920 KB
testcase_11 AC 116 ms
54,012 KB
testcase_12 AC 101 ms
52,908 KB
testcase_13 AC 117 ms
54,136 KB
testcase_14 AC 115 ms
54,044 KB
testcase_15 AC 123 ms
54,156 KB
testcase_16 AC 106 ms
52,988 KB
testcase_17 WA -
testcase_18 AC 117 ms
53,872 KB
testcase_19 AC 108 ms
53,056 KB
testcase_20 AC 120 ms
54,488 KB
testcase_21 AC 117 ms
54,052 KB
testcase_22 AC 113 ms
54,288 KB
testcase_23 WA -
testcase_24 AC 104 ms
52,612 KB
testcase_25 AC 119 ms
54,052 KB
testcase_26 AC 110 ms
53,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder192;
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=-100;i<=100;i++){
			for(int j=2;j<=n+i;j++){
				if((n+i)%j==0){
					System.out.println(n+i);
					return;
				}
			}
		}
	}
}
0