結果

問題 No.312 置換処理
ユーザー fal_rndfal_rnd
提出日時 2016-10-29 16:37:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 392 bytes
コンパイル時間 2,190 ms
コンパイル使用メモリ 74,844 KB
実行使用メモリ 56,700 KB
最終ジャッジ日時 2024-05-03 15:51:45
合計ジャッジ時間 9,546 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 141 ms
41,472 KB
testcase_03 WA -
testcase_04 AC 118 ms
39,988 KB
testcase_05 WA -
testcase_06 AC 133 ms
41,248 KB
testcase_07 AC 139 ms
41,556 KB
testcase_08 AC 132 ms
41,012 KB
testcase_09 AC 130 ms
40,956 KB
testcase_10 AC 129 ms
41,364 KB
testcase_11 AC 119 ms
40,192 KB
testcase_12 AC 133 ms
41,480 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 AC 131 ms
40,996 KB
testcase_25 WA -
testcase_26 AC 135 ms
41,152 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 133 ms
41,004 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 136 ms
41,592 KB
testcase_33 AC 138 ms
41,492 KB
testcase_34 AC 140 ms
41,420 KB
testcase_35 AC 134 ms
41,524 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 134 ms
41,464 KB
testcase_40 AC 130 ms
41,136 KB
testcase_41 AC 131 ms
41,568 KB
testcase_42 AC 131 ms
41,444 KB
testcase_43 AC 130 ms
41,324 KB
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

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);
		if(in%4==0)
			System.out.println(4);
		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