結果

問題 No.36 素数が嫌い!
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-24 22:46:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 466 bytes
コンパイル時間 3,572 ms
コンパイル使用メモリ 75,112 KB
実行使用メモリ 41,716 KB
最終ジャッジ日時 2024-11-06 10:01:02
合計ジャッジ時間 9,363 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 170 ms
41,108 KB
testcase_02 AC 131 ms
41,232 KB
testcase_03 AC 137 ms
41,320 KB
testcase_04 AC 130 ms
40,960 KB
testcase_05 AC 131 ms
41,432 KB
testcase_06 AC 135 ms
41,104 KB
testcase_07 AC 134 ms
41,088 KB
testcase_08 AC 130 ms
41,136 KB
testcase_09 AC 133 ms
41,116 KB
testcase_10 WA -
testcase_11 AC 155 ms
41,036 KB
testcase_12 AC 194 ms
41,512 KB
testcase_13 AC 191 ms
41,380 KB
testcase_14 AC 133 ms
41,288 KB
testcase_15 AC 136 ms
41,376 KB
testcase_16 AC 134 ms
41,304 KB
testcase_17 AC 135 ms
41,208 KB
testcase_18 AC 121 ms
39,944 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 151 ms
41,608 KB
testcase_25 WA -
testcase_26 AC 170 ms
41,244 KB
testcase_27 AC 186 ms
41,068 KB
testcase_28 AC 172 ms
41,456 KB
testcase_29 AC 190 ms
41,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No44 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long N = sc.nextLong();
		long n = N;
		long soinsuu = 0;
		long i = 2;
		while(n != 1) {
			if(n % i == 0) {
				n /= i;
				soinsuu++;
			}else if(i == 2) {
				i++;
			}else {
				i += 2;
			}
			if(i * i > N) {
				break;
			}
		}
		
		if(soinsuu >= 3) {
			System.out.println("YES");
		}else {
			System.out.println("NO");
		}
	}
}
0