結果

問題 No.312 置換処理
ユーザー fal_rndfal_rnd
提出日時 2016-10-29 17:37:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 424 bytes
コンパイル時間 2,065 ms
コンパイル使用メモリ 74,052 KB
実行使用メモリ 41,644 KB
最終ジャッジ日時 2024-05-03 15:53:38
合計ジャッジ時間 8,419 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,340 KB
testcase_01 WA -
testcase_02 AC 133 ms
41,376 KB
testcase_03 WA -
testcase_04 AC 123 ms
41,188 KB
testcase_05 AC 128 ms
41,364 KB
testcase_06 AC 113 ms
41,520 KB
testcase_07 AC 127 ms
41,320 KB
testcase_08 AC 119 ms
41,240 KB
testcase_09 AC 118 ms
41,404 KB
testcase_10 AC 111 ms
41,372 KB
testcase_11 AC 106 ms
40,988 KB
testcase_12 AC 117 ms
41,024 KB
testcase_13 AC 121 ms
40,992 KB
testcase_14 AC 121 ms
41,340 KB
testcase_15 AC 117 ms
41,264 KB
testcase_16 AC 123 ms
40,960 KB
testcase_17 AC 119 ms
41,120 KB
testcase_18 AC 110 ms
41,540 KB
testcase_19 AC 112 ms
41,456 KB
testcase_20 AC 114 ms
41,244 KB
testcase_21 AC 113 ms
41,260 KB
testcase_22 AC 110 ms
41,308 KB
testcase_23 AC 100 ms
41,268 KB
testcase_24 AC 107 ms
41,056 KB
testcase_25 AC 100 ms
41,448 KB
testcase_26 AC 118 ms
41,644 KB
testcase_27 AC 106 ms
41,352 KB
testcase_28 AC 105 ms
40,952 KB
testcase_29 AC 111 ms
41,536 KB
testcase_30 WA -
testcase_31 AC 109 ms
41,480 KB
testcase_32 AC 117 ms
41,200 KB
testcase_33 AC 124 ms
41,392 KB
testcase_34 AC 121 ms
40,148 KB
testcase_35 AC 114 ms
41,232 KB
testcase_36 AC 112 ms
41,344 KB
testcase_37 AC 115 ms
39,984 KB
testcase_38 AC 102 ms
41,092 KB
testcase_39 AC 113 ms
41,348 KB
testcase_40 AC 115 ms
41,412 KB
testcase_41 AC 115 ms
41,144 KB
testcase_42 AC 115 ms
41,108 KB
testcase_43 AC 112 ms
41,164 KB
testcase_44 AC 116 ms
40,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

	public static void main(String[] args) {
		long in = s.nextLong();
		if(in%3==0){
			System.out.println(3);
			return;
		}
		if(in%4==0){
			System.out.println(4);
			return;
		}
		long l = (long)(Math.sqrt(in)+0.6);
		long c = 5;
		while(in%c!=0){
			c+=2;
			if(c>l){
				System.out.println(in);
				return;
			}
		}
		System.out.println(c);
	}
}
0