結果

問題 No.312 置換処理
ユーザー happy-beanshappy-beans
提出日時 2017-03-15 19:45:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 803 bytes
コンパイル時間 2,763 ms
コンパイル使用メモリ 74,460 KB
実行使用メモリ 54,520 KB
最終ジャッジ日時 2024-04-27 10:50:11
合計ジャッジ時間 8,651 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
54,136 KB
testcase_01 AC 105 ms
53,232 KB
testcase_02 AC 111 ms
54,244 KB
testcase_03 AC 116 ms
54,004 KB
testcase_04 AC 107 ms
53,884 KB
testcase_05 AC 95 ms
52,724 KB
testcase_06 AC 108 ms
54,200 KB
testcase_07 AC 107 ms
53,240 KB
testcase_08 AC 106 ms
54,012 KB
testcase_09 AC 109 ms
54,280 KB
testcase_10 AC 105 ms
53,956 KB
testcase_11 AC 108 ms
54,004 KB
testcase_12 AC 107 ms
54,188 KB
testcase_13 AC 99 ms
52,984 KB
testcase_14 AC 109 ms
54,264 KB
testcase_15 AC 99 ms
54,152 KB
testcase_16 AC 107 ms
54,192 KB
testcase_17 AC 96 ms
52,644 KB
testcase_18 AC 110 ms
54,176 KB
testcase_19 AC 104 ms
53,752 KB
testcase_20 AC 106 ms
54,280 KB
testcase_21 AC 110 ms
54,060 KB
testcase_22 AC 108 ms
54,000 KB
testcase_23 AC 106 ms
52,756 KB
testcase_24 AC 111 ms
53,924 KB
testcase_25 AC 104 ms
53,952 KB
testcase_26 AC 105 ms
53,896 KB
testcase_27 AC 98 ms
52,716 KB
testcase_28 AC 106 ms
53,664 KB
testcase_29 AC 106 ms
54,520 KB
testcase_30 AC 106 ms
52,904 KB
testcase_31 AC 106 ms
54,120 KB
testcase_32 AC 109 ms
53,936 KB
testcase_33 AC 110 ms
54,000 KB
testcase_34 AC 111 ms
53,996 KB
testcase_35 AC 107 ms
53,876 KB
testcase_36 AC 103 ms
53,428 KB
testcase_37 AC 107 ms
54,024 KB
testcase_38 AC 110 ms
53,016 KB
testcase_39 AC 105 ms
54,036 KB
testcase_40 AC 115 ms
54,016 KB
testcase_41 AC 103 ms
53,212 KB
testcase_42 AC 106 ms
54,304 KB
testcase_43 AC 107 ms
54,124 KB
testcase_44 AC 105 ms
54,088 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