結果

問題 No.312 置換処理
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-23 18:40:21
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 290 bytes
コンパイル時間 1,805 ms
コンパイル使用メモリ 74,336 KB
実行使用メモリ 108,776 KB
最終ジャッジ日時 2024-11-19 04:30:38
合計ジャッジ時間 31,799 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
60,836 KB
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 AC 121 ms
61,044 KB
testcase_05 AC 121 ms
108,776 KB
testcase_06 AC 123 ms
60,744 KB
testcase_07 AC 120 ms
107,804 KB
testcase_08 AC 118 ms
60,744 KB
testcase_09 AC 119 ms
108,680 KB
testcase_10 AC 117 ms
60,680 KB
testcase_11 AC 109 ms
107,384 KB
testcase_12 AC 119 ms
60,792 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 108 ms
52,856 KB
testcase_23 WA -
testcase_24 AC 107 ms
53,080 KB
testcase_25 AC 119 ms
54,072 KB
testcase_26 AC 117 ms
54,220 KB
testcase_27 WA -
testcase_28 AC 118 ms
53,996 KB
testcase_29 AC 117 ms
53,900 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 131 ms
53,028 KB
testcase_36 AC 120 ms
54,288 KB
testcase_37 AC 119 ms
54,168 KB
testcase_38 WA -
testcase_39 AC 125 ms
54,412 KB
testcase_40 AC 126 ms
54,112 KB
testcase_41 AC 124 ms
53,764 KB
testcase_42 AC 123 ms
53,908 KB
testcase_43 AC 119 ms
54,360 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<=n;i+=2) {
			if(n%i==0) {
				System.out.println(i);
				return;
			}
		}
	}
}
0