結果

問題 No.36 素数が嫌い!
ユーザー threepipes_sthreepipes_s
提出日時 2014-11-25 02:04:46
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 3,165 bytes
コンパイル時間 2,138 ms
コンパイル使用メモリ 75,200 KB
実行使用メモリ 53,100 KB
最終ジャッジ日時 2023-08-30 22:47:26
合計ジャッジ時間 10,709 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 236 ms
51,168 KB
testcase_01 RE -
testcase_02 AC 238 ms
51,176 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 RE -
testcase_06 WA -
testcase_07 RE -
testcase_08 AC 236 ms
51,200 KB
testcase_09 AC 236 ms
50,996 KB
testcase_10 AC 236 ms
51,012 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 238 ms
49,556 KB
testcase_15 AC 236 ms
51,124 KB
testcase_16 AC 239 ms
51,156 KB
testcase_17 AC 236 ms
51,156 KB
testcase_18 AC 236 ms
51,152 KB
testcase_19 AC 237 ms
53,100 KB
testcase_20 RE -
testcase_21 AC 236 ms
49,168 KB
testcase_22 AC 237 ms
51,092 KB
testcase_23 AC 236 ms
51,048 KB
testcase_24 RE -
testcase_25 AC 237 ms
51,344 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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 = 0;
		for(int j=0; j<n; 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());
	}
}
0