結果

問題 No.36 素数が嫌い!
ユーザー holegumaholeguma
提出日時 2015-08-05 20:44:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 181 ms / 5,000 ms
コード長 641 bytes
コンパイル時間 2,090 ms
コンパイル使用メモリ 77,704 KB
実行使用メモリ 49,100 KB
最終ジャッジ日時 2024-06-27 00:22:58
合計ジャッジ時間 6,144 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
43,172 KB
testcase_01 AC 140 ms
45,856 KB
testcase_02 AC 53 ms
36,932 KB
testcase_03 AC 53 ms
36,860 KB
testcase_04 AC 53 ms
36,872 KB
testcase_05 AC 56 ms
36,972 KB
testcase_06 AC 56 ms
36,868 KB
testcase_07 AC 57 ms
36,800 KB
testcase_08 AC 53 ms
36,832 KB
testcase_09 AC 54 ms
37,036 KB
testcase_10 AC 55 ms
37,208 KB
testcase_11 AC 123 ms
41,500 KB
testcase_12 AC 180 ms
48,820 KB
testcase_13 AC 180 ms
48,872 KB
testcase_14 AC 123 ms
44,544 KB
testcase_15 AC 53 ms
36,972 KB
testcase_16 AC 54 ms
37,128 KB
testcase_17 AC 53 ms
37,176 KB
testcase_18 AC 53 ms
37,036 KB
testcase_19 AC 118 ms
42,300 KB
testcase_20 AC 149 ms
49,100 KB
testcase_21 AC 131 ms
45,924 KB
testcase_22 AC 135 ms
46,044 KB
testcase_23 AC 115 ms
43,136 KB
testcase_24 AC 128 ms
43,644 KB
testcase_25 AC 120 ms
43,720 KB
testcase_26 AC 144 ms
44,412 KB
testcase_27 AC 164 ms
46,700 KB
testcase_28 AC 145 ms
44,452 KB
testcase_29 AC 181 ms
48,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.Arrays;

class Main{
public static void main(String[] args) throws IOException{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String line="";
boolean[] p;
while((line=br.readLine())!=null){
long n=Long.parseLong(line);
p=new boolean[(int)Math.sqrt(n)+1];
Arrays.fill(p,true);
p[0]=false;
p[1]=false;
for(int i=2;i<=Math.sqrt(Math.sqrt(n));i++){
if(p[i]){
for(int j=i+i;j<=Math.sqrt(n);j+=i){
p[j]=false;
}
}
}
String ans="NO";
int cnt=0;
for(int i=2;i<Math.sqrt(n);i++){
if(p[i]){
if(n%i==0){
cnt++;
}
if(cnt==2||n%(i*i)==0){
ans="YES";
break;
}
}
}
System.out.println(ans);
}
}
}
0