結果

問題 No.312 置換処理
ユーザー 37zigen37zigen
提出日時 2016-03-22 02:55:34
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 359 bytes
コンパイル時間 2,105 ms
コンパイル使用メモリ 73,968 KB
実行使用メモリ 56,024 KB
最終ジャッジ日時 2024-10-01 12:39:46
合計ジャッジ時間 9,226 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
40,036 KB
testcase_01 AC 141 ms
41,364 KB
testcase_02 AC 145 ms
41,556 KB
testcase_03 AC 147 ms
41,424 KB
testcase_04 AC 116 ms
40,080 KB
testcase_05 AC 130 ms
41,388 KB
testcase_06 AC 130 ms
41,112 KB
testcase_07 AC 131 ms
41,628 KB
testcase_08 AC 125 ms
41,516 KB
testcase_09 AC 113 ms
40,328 KB
testcase_10 AC 124 ms
41,448 KB
testcase_11 AC 125 ms
41,080 KB
testcase_12 AC 129 ms
41,384 KB
testcase_13 AC 121 ms
41,156 KB
testcase_14 AC 126 ms
41,360 KB
testcase_15 AC 127 ms
41,236 KB
testcase_16 AC 126 ms
41,624 KB
testcase_17 AC 130 ms
41,488 KB
testcase_18 AC 130 ms
41,128 KB
testcase_19 AC 127 ms
41,108 KB
testcase_20 AC 133 ms
41,124 KB
testcase_21 AC 131 ms
41,364 KB
testcase_22 AC 132 ms
41,108 KB
testcase_23 WA -
testcase_24 AC 127 ms
41,156 KB
testcase_25 AC 127 ms
41,116 KB
testcase_26 AC 131 ms
41,560 KB
testcase_27 AC 132 ms
41,500 KB
testcase_28 AC 131 ms
41,284 KB
testcase_29 AC 127 ms
41,676 KB
testcase_30 AC 129 ms
41,172 KB
testcase_31 AC 118 ms
40,000 KB
testcase_32 AC 137 ms
41,468 KB
testcase_33 AC 139 ms
41,224 KB
testcase_34 AC 139 ms
41,588 KB
testcase_35 AC 117 ms
41,112 KB
testcase_36 AC 129 ms
41,156 KB
testcase_37 AC 121 ms
40,980 KB
testcase_38 AC 120 ms
41,460 KB
testcase_39 AC 123 ms
41,572 KB
testcase_40 AC 114 ms
41,504 KB
testcase_41 AC 119 ms
40,076 KB
testcase_42 AC 125 ms
41,224 KB
testcase_43 AC 128 ms
41,248 KB
testcase_44 AC 126 ms
41,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		long n=sc.nextLong();
		long ans=0;
		for(int i=3;i<=Math.sqrt((double)n);i++){
			if(n%i==0){
				ans=i;
				break;
			}
		}
		if(ans==0){
			if(n%2==0){
				ans=n/2;
			}else{
				ans=n;
			}
		}
		System.out.println(ans);

	}
}	
0