結果

問題 No.312 置換処理
ユーザー fal_rndfal_rnd
提出日時 2016-10-29 16:03:01
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 217 bytes
コンパイル時間 2,051 ms
コンパイル使用メモリ 74,656 KB
実行使用メモリ 108,808 KB
最終ジャッジ日時 2024-11-24 18:00:18
合計ジャッジ時間 41,008 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
60,684 KB
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 AC 129 ms
60,968 KB
testcase_05 AC 124 ms
107,512 KB
testcase_06 AC 129 ms
60,944 KB
testcase_07 AC 126 ms
107,544 KB
testcase_08 AC 126 ms
61,052 KB
testcase_09 AC 123 ms
108,596 KB
testcase_10 AC 130 ms
60,544 KB
testcase_11 AC 111 ms
106,976 KB
testcase_12 AC 128 ms
60,700 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 120 ms
53,852 KB
testcase_23 TLE -
testcase_24 AC 128 ms
53,992 KB
testcase_25 AC 128 ms
53,856 KB
testcase_26 AC 115 ms
52,748 KB
testcase_27 TLE -
testcase_28 AC 133 ms
54,060 KB
testcase_29 AC 111 ms
53,356 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 137 ms
53,844 KB
testcase_36 AC 133 ms
54,024 KB
testcase_37 AC 135 ms
53,864 KB
testcase_38 WA -
testcase_39 AC 128 ms
53,940 KB
testcase_40 AC 125 ms
53,972 KB
testcase_41 AC 129 ms
54,012 KB
testcase_42 AC 133 ms
54,036 KB
testcase_43 AC 132 ms
53,712 KB
testcase_44 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class A {
	static Scanner s = new Scanner(System.in);

	public static void main(String[] args) {
		long in = s.nextLong();
		long l = 3;
		while(in%l!=0){
			l+=2;
		}
		System.out.println(l);
	}
}
0