結果

問題 No.36 素数が嫌い!
ユーザー threepipes_sthreepipes_s
提出日時 2014-11-25 01:56:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,957 bytes
コンパイル時間 3,351 ms
コンパイル使用メモリ 75,260 KB
実行使用メモリ 51,600 KB
最終ジャッジ日時 2023-08-30 22:47:11
合計ジャッジ時間 11,118 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 239 ms
51,132 KB
testcase_01 WA -
testcase_02 AC 242 ms
51,524 KB
testcase_03 AC 238 ms
51,052 KB
testcase_04 AC 238 ms
51,180 KB
testcase_05 AC 242 ms
51,156 KB
testcase_06 AC 242 ms
51,148 KB
testcase_07 AC 244 ms
51,076 KB
testcase_08 AC 237 ms
51,004 KB
testcase_09 AC 236 ms
51,156 KB
testcase_10 AC 237 ms
50,976 KB
testcase_11 AC 242 ms
51,060 KB
testcase_12 AC 243 ms
51,600 KB
testcase_13 AC 243 ms
51,248 KB
testcase_14 WA -
testcase_15 AC 236 ms
51,204 KB
testcase_16 AC 236 ms
51,252 KB
testcase_17 AC 242 ms
51,060 KB
testcase_18 AC 238 ms
51,468 KB
testcase_19 AC 237 ms
51,152 KB
testcase_20 WA -
testcase_21 AC 238 ms
51,060 KB
testcase_22 AC 237 ms
51,064 KB
testcase_23 AC 237 ms
51,024 KB
testcase_24 WA -
testcase_25 AC 237 ms
51,024 KB
testcase_26 AC 241 ms
51,012 KB
testcase_27 AC 242 ms
51,160 KB
testcase_28 AC 243 ms
51,176 KB
testcase_29 AC 241 ms
51,028 KB
権限があれば一括ダウンロードができます

ソースコード

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 = 2;
		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