結果

問題 No.312 置換処理
ユーザー spaciaspacia
提出日時 2016-01-09 10:55:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 545 bytes
コンパイル時間 2,425 ms
コンパイル使用メモリ 74,516 KB
実行使用メモリ 37,676 KB
最終ジャッジ日時 2024-11-15 12:01:13
合計ジャッジ時間 5,935 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,924 KB
testcase_01 AC 63 ms
37,608 KB
testcase_02 AC 69 ms
37,676 KB
testcase_03 AC 66 ms
37,672 KB
testcase_04 AC 52 ms
36,924 KB
testcase_05 AC 51 ms
36,688 KB
testcase_06 AC 51 ms
37,100 KB
testcase_07 AC 56 ms
36,812 KB
testcase_08 AC 52 ms
36,984 KB
testcase_09 AC 51 ms
37,068 KB
testcase_10 AC 50 ms
37,072 KB
testcase_11 AC 52 ms
37,120 KB
testcase_12 AC 50 ms
37,076 KB
testcase_13 AC 50 ms
37,020 KB
testcase_14 AC 50 ms
37,220 KB
testcase_15 AC 51 ms
36,572 KB
testcase_16 AC 49 ms
36,792 KB
testcase_17 AC 51 ms
36,976 KB
testcase_18 AC 51 ms
37,068 KB
testcase_19 AC 52 ms
36,576 KB
testcase_20 AC 50 ms
36,892 KB
testcase_21 AC 50 ms
36,664 KB
testcase_22 AC 51 ms
36,980 KB
testcase_23 AC 52 ms
36,688 KB
testcase_24 AC 52 ms
36,580 KB
testcase_25 AC 51 ms
37,108 KB
testcase_26 AC 51 ms
36,964 KB
testcase_27 AC 51 ms
37,008 KB
testcase_28 AC 50 ms
37,124 KB
testcase_29 AC 51 ms
37,092 KB
testcase_30 AC 54 ms
36,816 KB
testcase_31 AC 50 ms
36,892 KB
testcase_32 AC 53 ms
36,904 KB
testcase_33 AC 58 ms
37,080 KB
testcase_34 AC 58 ms
36,900 KB
testcase_35 AC 51 ms
36,964 KB
testcase_36 AC 50 ms
37,048 KB
testcase_37 AC 51 ms
37,248 KB
testcase_38 AC 51 ms
37,012 KB
testcase_39 AC 50 ms
37,104 KB
testcase_40 AC 50 ms
37,108 KB
testcase_41 AC 52 ms
37,116 KB
testcase_42 AC 50 ms
37,024 KB
testcase_43 AC 50 ms
36,832 KB
testcase_44 AC 50 ms
36,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static long solve (long n) {
		long k = n;
		if (k % 2 == 0) k /= 2;
		if (k % 3 != 0 && k % 2 == 0) return 4;
		
		for (long i = 3; i * i <= n; i += 2) {
			if (n % i == 0) return i;
		}
		return k;
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		long n = Long.parseLong(br.readLine());
		
		out(solve(n));
	}
}
0