結果

問題 No.312 置換処理
ユーザー happy-beanshappy-beans
提出日時 2017-03-15 19:45:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 803 bytes
コンパイル時間 3,808 ms
コンパイル使用メモリ 74,344 KB
実行使用メモリ 41,524 KB
最終ジャッジ日時 2024-11-15 12:13:46
合計ジャッジ時間 11,398 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,340 KB
testcase_01 AC 140 ms
41,324 KB
testcase_02 AC 154 ms
41,328 KB
testcase_03 AC 144 ms
41,180 KB
testcase_04 AC 133 ms
41,160 KB
testcase_05 AC 133 ms
41,252 KB
testcase_06 AC 136 ms
41,000 KB
testcase_07 AC 145 ms
41,084 KB
testcase_08 AC 140 ms
41,016 KB
testcase_09 AC 137 ms
41,172 KB
testcase_10 AC 140 ms
41,004 KB
testcase_11 AC 140 ms
41,164 KB
testcase_12 AC 134 ms
41,152 KB
testcase_13 AC 118 ms
40,220 KB
testcase_14 AC 135 ms
41,240 KB
testcase_15 AC 136 ms
41,296 KB
testcase_16 AC 134 ms
41,124 KB
testcase_17 AC 140 ms
41,240 KB
testcase_18 AC 137 ms
40,940 KB
testcase_19 AC 137 ms
41,220 KB
testcase_20 AC 140 ms
41,132 KB
testcase_21 AC 138 ms
41,160 KB
testcase_22 AC 133 ms
41,376 KB
testcase_23 AC 140 ms
41,384 KB
testcase_24 AC 133 ms
41,072 KB
testcase_25 AC 132 ms
41,096 KB
testcase_26 AC 133 ms
41,352 KB
testcase_27 AC 135 ms
40,972 KB
testcase_28 AC 130 ms
41,188 KB
testcase_29 AC 133 ms
41,264 KB
testcase_30 AC 141 ms
41,128 KB
testcase_31 AC 134 ms
41,296 KB
testcase_32 AC 135 ms
41,060 KB
testcase_33 AC 143 ms
41,396 KB
testcase_34 AC 141 ms
41,492 KB
testcase_35 AC 135 ms
41,180 KB
testcase_36 AC 131 ms
41,096 KB
testcase_37 AC 133 ms
41,120 KB
testcase_38 AC 132 ms
41,256 KB
testcase_39 AC 134 ms
41,184 KB
testcase_40 AC 134 ms
40,988 KB
testcase_41 AC 136 ms
41,524 KB
testcase_42 AC 136 ms
41,088 KB
testcase_43 AC 138 ms
41,328 KB
testcase_44 AC 137 ms
41,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No312 {

	public static void main(String[] args) {

		Scanner s = new Scanner(System.in);
		
		long n = s.nextLong();
		
		// n が 3 で割り切れるときは 3
		if ((n % 3) == 0) {
			System.out.println(3);
			return;
		}

		// n が 4 で割り切れるときは 4
		else if ((n % 4) == 0) {
			System.out.println(4);
			return;
		}

		// その他
		else {

			// n が 2 で割り切れるときは 2 で割った数に対して判定をする
			// 4 で割り切れる数は含まれないため、 2/n は必ず奇数。
			if ((n % 2) == 0) {
				n = n / 2;
			}
			
			long i = 3;
			double sqrt = Math.sqrt(n);
			
			while (i < sqrt) {
				
				if ((n % i) == 0) break;
				i += 2;
			}

			if (i > sqrt) i = n;
			System.out.println(i);

		}
	}
}
0