結果
問題 | No.36 素数が嫌い! |
ユーザー | threepipes_s |
提出日時 | 2014-11-25 02:09:25 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,185 bytes |
コンパイル時間 | 2,622 ms |
コンパイル使用メモリ | 78,676 KB |
実行使用メモリ | 38,432 KB |
最終ジャッジ日時 | 2024-06-10 22:10:23 |
合計ジャッジ時間 | 10,173 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 219 ms
38,244 KB |
testcase_01 | WA | - |
testcase_02 | AC | 222 ms
38,300 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 223 ms
38,432 KB |
testcase_06 | WA | - |
testcase_07 | AC | 230 ms
38,132 KB |
testcase_08 | AC | 236 ms
38,248 KB |
testcase_09 | AC | 218 ms
38,352 KB |
testcase_10 | AC | 221 ms
38,144 KB |
testcase_11 | AC | 223 ms
38,056 KB |
testcase_12 | AC | 222 ms
38,092 KB |
testcase_13 | AC | 222 ms
38,136 KB |
testcase_14 | AC | 222 ms
38,108 KB |
testcase_15 | AC | 225 ms
38,236 KB |
testcase_16 | AC | 222 ms
38,316 KB |
testcase_17 | AC | 222 ms
38,348 KB |
testcase_18 | AC | 220 ms
38,056 KB |
testcase_19 | AC | 225 ms
38,080 KB |
testcase_20 | WA | - |
testcase_21 | AC | 218 ms
38,272 KB |
testcase_22 | AC | 218 ms
38,352 KB |
testcase_23 | AC | 217 ms
38,324 KB |
testcase_24 | WA | - |
testcase_25 | AC | 220 ms
38,108 KB |
testcase_26 | AC | 219 ms
38,096 KB |
testcase_27 | AC | 217 ms
38,052 KB |
testcase_28 | AC | 224 ms
38,136 KB |
testcase_29 | AC | 221 ms
38,400 KB |
ソースコード
import java.io.BufferedReader; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStreamReader; import java.util.ArrayList; import java.util.BitSet; import java.util.Comparator; import java.util.List; import java.util.TreeSet; public class Main { public static int w; public static int k; public static int n; // public static int[][] dp; public static int[] a; public static int[] b; public static List<double[]> list = new ArrayList<double[]>(); public static TreeSet<Integer> set = new TreeSet<Integer>(); // public static PriorityQueue<Integer> pq = new PriorityQueue<Integer>(); public static void main(String[] args) throws NumberFormatException, IOException{ ContestScanner in = new ContestScanner(); long n = in.nextLong(); int[] p = new int[10000]; int i=1; int count = 2; p[0] = 2; while(i<10000){ count++; boolean notp = false; for(int j=0; j<i; j++){ if(count%p[j] == 0){ notp = true; break; } } if(!notp){ p[i++] = count; } } // i=0; // count = 2; count = 0; for(int j=0; j<10000; j++){ if(n % p[j] == 0){ count++; if(n % (p[j]*p[j]) == 0) count++; } if(count > 1){ System.out.println("YES"); return; } } // while(i<10000){ // if(p[i] == count) i++; // else{ // if(n%count == 0){ // System.out.println("YES"); // return; // } // } // count++; // if(count == n) break; // } System.out.println("NO"); } } class Node{ int id; List<Node> edge = new ArrayList<Node>(); public Node(int id){ this.id = id; } public void createEdge(Node node){ edge.add(node); } } class MyMath{ public static long fact(long n){ long res = 1; while(n > 0){ res *= n--; } return res; } public static long[][] pascalT(int n){ long[][] tri = new long[n][]; for(int i=0; i<n; i++){ tri[i] = new long[i+1]; for(int j=0; j<i+1; j++){ if(j == 0 || j == i){ tri[i][j] = 1; }else{ tri[i][j] = tri[i-1][j-1] + tri[i-1][j]; } } } return tri; } } class MyComp implements Comparator<Integer>{ public int compare(Integer arg0, Integer arg1) { return arg0 - arg1; } } // //class MyCompB implements Comparator<int[]>{ // public int compare(int[] arg0, int[] arg1) { // return arg0[1] - arg1[1]; // } //} class ContestScanner{ private BufferedReader reader; private String[] line; private int idx; public ContestScanner() throws FileNotFoundException{ reader = new BufferedReader(new InputStreamReader(System.in)); } public String nextToken() throws IOException{ if(line == null || line.length <= idx){ line = reader.readLine().trim().split(" "); idx = 0; } return line[idx++]; } public long nextLong() throws IOException, NumberFormatException{ return Long.parseLong(nextToken()); } public int nextInt() throws NumberFormatException, IOException{ return (int)nextLong(); } public double nextDouble() throws NumberFormatException, IOException{ return Double.parseDouble(nextToken()); } }