結果

問題 No.312 置換処理
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-23 18:59:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 301 bytes
コンパイル時間 2,138 ms
コンパイル使用メモリ 74,000 KB
実行使用メモリ 54,480 KB
最終ジャッジ日時 2024-11-19 04:33:30
合計ジャッジ時間 9,435 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,088 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 139 ms
53,924 KB
testcase_06 AC 133 ms
54,100 KB
testcase_07 AC 137 ms
53,872 KB
testcase_08 AC 135 ms
54,188 KB
testcase_09 AC 133 ms
54,036 KB
testcase_10 AC 132 ms
54,112 KB
testcase_11 AC 135 ms
53,872 KB
testcase_12 AC 132 ms
54,240 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 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 132 ms
54,000 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 131 ms
54,200 KB
testcase_36 AC 115 ms
52,864 KB
testcase_37 AC 128 ms
54,040 KB
testcase_38 WA -
testcase_39 AC 128 ms
53,940 KB
testcase_40 AC 129 ms
54,176 KB
testcase_41 AC 129 ms
54,088 KB
testcase_42 AC 138 ms
54,208 KB
testcase_43 AC 132 ms
54,144 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;
			}
		}
	}
}
0