結果

問題 No.312 置換処理
ユーザー shinwisteriashinwisteria
提出日時 2017-04-01 21:22:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 670 bytes
コンパイル時間 3,600 ms
コンパイル使用メモリ 74,336 KB
実行使用メモリ 45,260 KB
最終ジャッジ日時 2024-07-07 19:04:07
合計ジャッジ時間 8,793 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 119 ms
42,804 KB
testcase_02 AC 129 ms
45,260 KB
testcase_03 AC 113 ms
43,160 KB
testcase_04 AC 106 ms
41,016 KB
testcase_05 AC 114 ms
44,896 KB
testcase_06 AC 120 ms
43,016 KB
testcase_07 AC 125 ms
44,180 KB
testcase_08 AC 122 ms
43,640 KB
testcase_09 AC 105 ms
41,228 KB
testcase_10 AC 114 ms
42,436 KB
testcase_11 AC 119 ms
44,316 KB
testcase_12 AC 114 ms
42,612 KB
testcase_13 AC 105 ms
41,432 KB
testcase_14 AC 107 ms
40,992 KB
testcase_15 AC 95 ms
40,108 KB
testcase_16 AC 106 ms
41,180 KB
testcase_17 AC 108 ms
41,032 KB
testcase_18 AC 101 ms
39,828 KB
testcase_19 AC 105 ms
41,032 KB
testcase_20 AC 97 ms
40,212 KB
testcase_21 AC 110 ms
41,068 KB
testcase_22 AC 105 ms
41,176 KB
testcase_23 AC 105 ms
41,336 KB
testcase_24 AC 106 ms
41,040 KB
testcase_25 AC 96 ms
40,172 KB
testcase_26 AC 96 ms
40,132 KB
testcase_27 AC 91 ms
39,836 KB
testcase_28 AC 96 ms
40,176 KB
testcase_29 AC 103 ms
41,096 KB
testcase_30 AC 111 ms
41,588 KB
testcase_31 AC 99 ms
40,372 KB
testcase_32 AC 112 ms
41,544 KB
testcase_33 AC 111 ms
41,756 KB
testcase_34 AC 114 ms
42,244 KB
testcase_35 AC 108 ms
41,532 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 95 ms
39,648 KB
testcase_39 AC 115 ms
42,288 KB
testcase_40 AC 98 ms
40,396 KB
testcase_41 AC 107 ms
41,204 KB
testcase_42 AC 98 ms
40,440 KB
testcase_43 AC 98 ms
40,124 KB
testcase_44 AC 106 ms
41,344 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;
		if(N % 4 == 0){
			N = 4;
		}else if(N % 2 == 0){
			N /= 2;
		}
		int root = (int)Math.sqrt(N);
		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