結果

問題 No.312 置換処理
ユーザー kou6839kou6839
提出日時 2015-12-05 14:32:02
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 357 bytes
コンパイル時間 2,119 ms
コンパイル使用メモリ 73,620 KB
実行使用メモリ 41,544 KB
最終ジャッジ日時 2024-09-14 14:24:28
合計ジャッジ時間 9,364 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 133 ms
41,044 KB
testcase_02 AC 151 ms
41,064 KB
testcase_03 AC 130 ms
40,916 KB
testcase_04 AC 134 ms
41,188 KB
testcase_05 AC 130 ms
40,888 KB
testcase_06 WA -
testcase_07 AC 138 ms
40,992 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 135 ms
41,244 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 131 ms
40,872 KB
testcase_23 AC 130 ms
40,704 KB
testcase_24 AC 133 ms
40,804 KB
testcase_25 AC 132 ms
41,044 KB
testcase_26 AC 133 ms
40,928 KB
testcase_27 AC 133 ms
40,924 KB
testcase_28 AC 131 ms
40,800 KB
testcase_29 AC 130 ms
40,988 KB
testcase_30 AC 133 ms
41,108 KB
testcase_31 WA -
testcase_32 AC 135 ms
40,880 KB
testcase_33 AC 137 ms
40,980 KB
testcase_34 AC 139 ms
40,852 KB
testcase_35 AC 119 ms
39,888 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 116 ms
39,612 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 132 ms
40,912 KB
testcase_43 AC 130 ms
40,804 KB
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {

		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		
		for(long i=2;i*i<=n;i++){
			if(n%i==0){
				if(i>2){
				System.out.println(i);
				return;}
				else if(n/i>2){
					System.out.println(n/i);
					return;
				}
			}
		}
		System.out.println(n);
	}
}
0