結果

問題 No.312 置換処理
ユーザー spaciaspacia
提出日時 2016-01-09 10:55:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 545 bytes
コンパイル時間 1,783 ms
コンパイル使用メモリ 75,128 KB
実行使用メモリ 50,864 KB
最終ジャッジ日時 2024-04-27 10:40:04
合計ジャッジ時間 4,955 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
50,372 KB
testcase_01 AC 60 ms
50,400 KB
testcase_02 AC 63 ms
50,864 KB
testcase_03 AC 65 ms
50,808 KB
testcase_04 AC 48 ms
50,268 KB
testcase_05 AC 49 ms
50,132 KB
testcase_06 AC 48 ms
50,048 KB
testcase_07 AC 52 ms
50,360 KB
testcase_08 AC 46 ms
50,200 KB
testcase_09 AC 48 ms
50,340 KB
testcase_10 AC 50 ms
50,248 KB
testcase_11 AC 48 ms
50,344 KB
testcase_12 AC 46 ms
50,264 KB
testcase_13 AC 47 ms
50,272 KB
testcase_14 AC 47 ms
50,248 KB
testcase_15 AC 47 ms
50,344 KB
testcase_16 AC 46 ms
49,984 KB
testcase_17 AC 46 ms
50,256 KB
testcase_18 AC 46 ms
50,044 KB
testcase_19 AC 47 ms
49,984 KB
testcase_20 AC 48 ms
50,312 KB
testcase_21 AC 46 ms
50,044 KB
testcase_22 AC 46 ms
50,020 KB
testcase_23 AC 46 ms
49,872 KB
testcase_24 AC 45 ms
50,360 KB
testcase_25 AC 46 ms
50,168 KB
testcase_26 AC 48 ms
50,456 KB
testcase_27 AC 45 ms
49,988 KB
testcase_28 AC 46 ms
50,024 KB
testcase_29 AC 46 ms
50,216 KB
testcase_30 AC 47 ms
50,124 KB
testcase_31 AC 46 ms
50,008 KB
testcase_32 AC 47 ms
50,032 KB
testcase_33 AC 50 ms
50,060 KB
testcase_34 AC 52 ms
50,312 KB
testcase_35 AC 48 ms
49,896 KB
testcase_36 AC 45 ms
50,284 KB
testcase_37 AC 45 ms
50,400 KB
testcase_38 AC 46 ms
50,040 KB
testcase_39 AC 45 ms
50,212 KB
testcase_40 AC 44 ms
50,208 KB
testcase_41 AC 46 ms
50,272 KB
testcase_42 AC 48 ms
50,220 KB
testcase_43 AC 47 ms
50,144 KB
testcase_44 AC 45 ms
50,040 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