結果

問題 No.312 置換処理
ユーザー happy-beanshappy-beans
提出日時 2017-03-15 19:15:05
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 392 bytes
コンパイル時間 5,010 ms
コンパイル使用メモリ 84,100 KB
実行使用メモリ 54,616 KB
最終ジャッジ日時 2024-07-04 01:21:52
合計ジャッジ時間 11,542 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,984 KB
testcase_01 WA -
testcase_02 AC 121 ms
40,464 KB
testcase_03 WA -
testcase_04 AC 120 ms
40,956 KB
testcase_05 AC 124 ms
41,440 KB
testcase_06 AC 109 ms
40,136 KB
testcase_07 AC 121 ms
41,292 KB
testcase_08 AC 114 ms
41,140 KB
testcase_09 AC 117 ms
40,892 KB
testcase_10 AC 121 ms
41,480 KB
testcase_11 AC 122 ms
41,188 KB
testcase_12 AC 118 ms
41,440 KB
testcase_13 AC 126 ms
41,360 KB
testcase_14 AC 126 ms
41,052 KB
testcase_15 AC 125 ms
41,312 KB
testcase_16 AC 125 ms
41,080 KB
testcase_17 AC 103 ms
39,640 KB
testcase_18 AC 121 ms
41,348 KB
testcase_19 AC 115 ms
41,432 KB
testcase_20 AC 114 ms
41,100 KB
testcase_21 AC 113 ms
41,256 KB
testcase_22 AC 119 ms
41,212 KB
testcase_23 AC 112 ms
40,820 KB
testcase_24 AC 116 ms
41,344 KB
testcase_25 WA -
testcase_26 AC 124 ms
41,120 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 119 ms
40,968 KB
testcase_32 AC 131 ms
41,096 KB
testcase_33 AC 130 ms
41,304 KB
testcase_34 AC 123 ms
41,332 KB
testcase_35 AC 123 ms
41,036 KB
testcase_36 AC 128 ms
41,688 KB
testcase_37 AC 127 ms
41,240 KB
testcase_38 AC 123 ms
41,252 KB
testcase_39 AC 107 ms
40,016 KB
testcase_40 AC 110 ms
41,396 KB
testcase_41 AC 102 ms
39,996 KB
testcase_42 AC 121 ms
41,476 KB
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No312 {

	public static void main(String[] args) {

		Scanner s = new Scanner(System.in);
		
		long n = s.nextLong();
		
		long i = 3;
		double sqrt = Math.sqrt(n);
		
		if (i > sqrt) {
			i = n;
		}
		else {
			while (i < sqrt) {
				
				if ((n % i) == 0) break;
				i++;
			}
			if (i == Math.ceil(sqrt)) i = n;
		}
		
		System.out.println(i);
	}
}
0