結果

問題 No.312 置換処理
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-23 19:05:47
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 337 bytes
コンパイル時間 2,077 ms
コンパイル使用メモリ 74,680 KB
実行使用メモリ 56,124 KB
最終ジャッジ日時 2024-11-19 04:34:32
合計ジャッジ時間 9,425 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,544 KB
testcase_01 AC 128 ms
40,388 KB
testcase_02 AC 144 ms
41,252 KB
testcase_03 AC 142 ms
41,168 KB
testcase_04 AC 132 ms
41,208 KB
testcase_05 AC 128 ms
41,268 KB
testcase_06 AC 119 ms
41,216 KB
testcase_07 AC 126 ms
41,148 KB
testcase_08 AC 131 ms
41,564 KB
testcase_09 AC 131 ms
41,196 KB
testcase_10 AC 130 ms
41,324 KB
testcase_11 AC 130 ms
41,472 KB
testcase_12 AC 130 ms
41,416 KB
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 129 ms
41,356 KB
testcase_23 WA -
testcase_24 AC 131 ms
41,460 KB
testcase_25 AC 126 ms
41,008 KB
testcase_26 AC 115 ms
41,256 KB
testcase_27 AC 118 ms
40,148 KB
testcase_28 AC 131 ms
41,296 KB
testcase_29 AC 133 ms
40,996 KB
testcase_30 AC 116 ms
41,212 KB
testcase_31 WA -
testcase_32 AC 118 ms
40,228 KB
testcase_33 AC 134 ms
41,380 KB
testcase_34 AC 138 ms
41,516 KB
testcase_35 AC 133 ms
41,200 KB
testcase_36 AC 121 ms
39,888 KB
testcase_37 AC 119 ms
40,520 KB
testcase_38 WA -
testcase_39 AC 133 ms
41,244 KB
testcase_40 AC 134 ms
41,328 KB
testcase_41 AC 134 ms
41,188 KB
testcase_42 AC 133 ms
41,316 KB
testcase_43 AC 136 ms
41,300 KB
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		long n=scanner.nextLong();
		for(int i=3;i<=Math.sqrt(n);i+=2) {
			if(n%i==0) {
				System.out.println(i);
				return;
			}
		}
		System.out.println(n%2==0?n/2:n);
	}
}
0