結果

問題 No.312 置換処理
ユーザー shinwisteriashinwisteria
提出日時 2017-04-01 21:27:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 687 bytes
コンパイル時間 3,491 ms
コンパイル使用メモリ 74,836 KB
実行使用メモリ 58,172 KB
最終ジャッジ日時 2024-11-15 12:15:07
合計ジャッジ時間 11,171 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
56,680 KB
testcase_01 AC 149 ms
56,252 KB
testcase_02 AC 151 ms
58,048 KB
testcase_03 AC 154 ms
58,172 KB
testcase_04 AC 130 ms
54,076 KB
testcase_05 AC 137 ms
58,036 KB
testcase_06 AC 145 ms
56,440 KB
testcase_07 AC 151 ms
56,924 KB
testcase_08 AC 147 ms
56,456 KB
testcase_09 AC 142 ms
56,296 KB
testcase_10 AC 145 ms
56,056 KB
testcase_11 AC 151 ms
56,656 KB
testcase_12 AC 145 ms
56,296 KB
testcase_13 AC 146 ms
56,688 KB
testcase_14 AC 144 ms
56,080 KB
testcase_15 AC 144 ms
55,840 KB
testcase_16 AC 142 ms
56,072 KB
testcase_17 AC 141 ms
56,116 KB
testcase_18 AC 143 ms
56,148 KB
testcase_19 AC 146 ms
56,924 KB
testcase_20 AC 146 ms
56,656 KB
testcase_21 AC 145 ms
56,808 KB
testcase_22 AC 132 ms
53,992 KB
testcase_23 AC 133 ms
53,956 KB
testcase_24 AC 132 ms
54,144 KB
testcase_25 AC 133 ms
54,084 KB
testcase_26 AC 134 ms
53,760 KB
testcase_27 AC 134 ms
53,884 KB
testcase_28 AC 135 ms
53,976 KB
testcase_29 AC 132 ms
54,148 KB
testcase_30 AC 138 ms
53,936 KB
testcase_31 AC 139 ms
54,204 KB
testcase_32 AC 137 ms
54,032 KB
testcase_33 AC 144 ms
56,252 KB
testcase_34 AC 144 ms
55,876 KB
testcase_35 AC 142 ms
56,332 KB
testcase_36 AC 133 ms
53,876 KB
testcase_37 AC 132 ms
54,060 KB
testcase_38 AC 130 ms
53,804 KB
testcase_39 AC 139 ms
56,216 KB
testcase_40 AC 135 ms
53,856 KB
testcase_41 AC 132 ms
54,040 KB
testcase_42 AC 133 ms
53,868 KB
testcase_43 AC 132 ms
54,200 KB
testcase_44 AC 132 ms
54,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Chikanshori {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		long N = s.nextLong();
		s.close();
		boolean tof = true;
		int root = (int)Math.sqrt(N);
		if(N % 3 != 0 &&N % 4 == 0){
			N = 4;
		}else if(N % 2 == 0){
			N /= 2;
		}
		
		int[] prime = new int[root+1];
		prime[0] = 1;
		prime[1] = 1;
		for(int i = 3;i <=root;i++){
			if(prime[i] == 0){
				for(int j = 1;j*i <= root;j++){
					prime[j*i] = 1;
				}
				if(N % i == 0){
					System.out.println(i);
					tof = false;
					break;
				}
			}
		}
		if(tof){
			System.out.println(N);
		}

	}

}
0