結果

問題 No.192 合成数
ユーザー 練習生練習生
提出日時 2015-08-18 14:18:15
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 327 bytes
コンパイル時間 3,473 ms
コンパイル使用メモリ 74,596 KB
実行使用メモリ 54,456 KB
最終ジャッジ日時 2024-10-07 15:32:43
合計ジャッジ時間 8,472 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,152 KB
testcase_01 AC 127 ms
54,132 KB
testcase_02 AC 126 ms
53,964 KB
testcase_03 AC 124 ms
54,236 KB
testcase_04 AC 125 ms
53,708 KB
testcase_05 AC 124 ms
54,292 KB
testcase_06 AC 112 ms
52,704 KB
testcase_07 AC 131 ms
54,004 KB
testcase_08 AC 128 ms
53,996 KB
testcase_09 AC 130 ms
54,384 KB
testcase_10 AC 135 ms
54,292 KB
testcase_11 AC 128 ms
53,836 KB
testcase_12 AC 132 ms
54,372 KB
testcase_13 AC 133 ms
53,836 KB
testcase_14 AC 133 ms
54,120 KB
testcase_15 AC 130 ms
54,456 KB
testcase_16 AC 131 ms
54,136 KB
testcase_17 AC 130 ms
54,248 KB
testcase_18 AC 128 ms
54,280 KB
testcase_19 AC 128 ms
53,992 KB
testcase_20 AC 125 ms
54,164 KB
testcase_21 AC 128 ms
54,064 KB
testcase_22 AC 127 ms
54,012 KB
testcase_23 WA -
testcase_24 AC 132 ms
54,428 KB
testcase_25 AC 134 ms
54,416 KB
testcase_26 AC 132 ms
54,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No192 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt() - 99;
		sc.close();
		while(true){
			// フェルマーテスト
			if((Math.pow(2, (n - 1)) % n) != 1){
				System.out.println(n);
				break;
			}else{
				n++;
			}
		}
	}
}
0