結果

問題 No.312 置換処理
ユーザー jp_stejp_ste
提出日時 2016-02-02 20:33:22
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 545 bytes
コンパイル時間 2,267 ms
コンパイル使用メモリ 74,608 KB
実行使用メモリ 42,644 KB
最終ジャッジ日時 2024-09-21 20:03:25
合計ジャッジ時間 9,985 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
42,040 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 150 ms
42,424 KB
testcase_06 AC 148 ms
41,984 KB
testcase_07 AC 138 ms
41,332 KB
testcase_08 AC 150 ms
42,340 KB
testcase_09 AC 148 ms
41,664 KB
testcase_10 AC 148 ms
41,684 KB
testcase_11 AC 149 ms
42,388 KB
testcase_12 AC 144 ms
41,968 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 134 ms
41,452 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 133 ms
40,788 KB
testcase_36 AC 132 ms
41,280 KB
testcase_37 AC 133 ms
41,236 KB
testcase_38 WA -
testcase_39 AC 147 ms
41,796 KB
testcase_40 AC 141 ms
41,932 KB
testcase_41 AC 123 ms
40,032 KB
testcase_42 AC 138 ms
41,712 KB
testcase_43 AC 134 ms
41,380 KB
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		long N = scan.nextLong();
		int M = (int)Math.sqrt(N);
		boolean primeList[] = new boolean[M+1];
		for(int i=2; i<=M; i++) {
			primeList[i] = true;
		}
		
		for(int i=2; i<=M; i++) {
			if(primeList[i]) {
				for(int j=i+i; j<=M; j=j+i) {
					primeList[j] = false;
				}
			}
		}
		
		for(int i=3; i<=M; i++) {
			if(primeList[i]) {
				if(N%i == 0) {
					System.out.println(i);
					break;
				}
			}
		}
	}
}
0