結果

問題 No.3035 2018
ユーザー GrenacheGrenache
提出日時 2018-04-02 00:21:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 806 ms / 2,000 ms
コード長 3,321 bytes
コンパイル時間 5,675 ms
コンパイル使用メモリ 78,128 KB
実行使用メモリ 89,644 KB
最終ジャッジ日時 2023-09-08 13:09:20
合計ジャッジ時間 13,154 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 769 ms
88,572 KB
testcase_01 AC 765 ms
89,492 KB
testcase_02 AC 713 ms
88,788 KB
testcase_03 AC 772 ms
89,644 KB
testcase_04 AC 764 ms
89,168 KB
testcase_05 AC 784 ms
88,936 KB
testcase_06 AC 762 ms
88,852 KB
testcase_07 AC 806 ms
88,892 KB
testcase_08 AC 760 ms
88,924 KB
testcase_09 AC 767 ms
88,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder3035 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int n = sc.nextInt();

		Prime prime = new Prime(5_000_000);

		List<Integer> list = new ArrayList<>(1_000_000);
		List<Integer> primes = prime.getPrimeList();

		for (int i = 0, size = primes.size(); i < size; i++) {
			int p = primes.get(i);
			if (p * p > 5111443) {
				break;
			}

			for (int j = i + 1; j < size && p * primes.get(j) <= 5111443; j++) {
				list.add(p * primes.get(j));
			}
		}
		for (int p : prime) {
			if ((long)p * p * p > 5111443) {
				break;
			}

			list.add(p * p * p);
		}
		Collections.sort(list);

		pr.println(list.get(n - 1));
	}

	static class Prime implements Iterable<Integer> {
		private int n;
		private BitSet p;

		Prime(int n) {
			this.n = n;

			p = new BitSet(n / 2);
			int m = (int)Math.sqrt(n);

//			for (int i = 1; i <= m; i++) {
			for (int bi = p.nextClearBit(0); 2 * (bi + 1) + 1 <= m; bi = p.nextClearBit(bi + 1)) {
				long i = bi + 1;
//				if (p.get(i - 1)) {
//					continue;
//				}

				for (long j = 2 * i * (i + 1); 2 * j + 1 <= n; j += 2 * i + 1) {
					p.set((int)(j - 1));
				}
			}
		}

		boolean isPrime(int n) {
			if (n == 2) {
				return true;
			}

			if (n == 1 || (n & 0x1) == 0) {
				return false;
			}

			return !p.get(n / 2 - 1);
		}

		List<Integer> getPrimeList() {
			List<Integer> ret = new ArrayList<>();
			for (int p : this) {
				ret.add(p);
			}

			return ret;
		}

		Map<Long, Integer> primeFactorize(long x) {
			Map<Long, Integer> hm = new TreeMap<>();
			long n = x;
			for (int p : this) {
				if ((long)p * p > n) {
					break;
				}
				int cnt = 0;
				while (n % p == 0) {
					cnt++;
					n /= p;
				}
				if (cnt > 0) {
					hm.put((long)p, cnt);
				}
			}
			if (n != 1) {
				hm.put(n, 1);
			}

			return hm;
		}

		@Override
		public Iterator<Integer> iterator() {
			return new PrimeIterator();
		}

		private class PrimeIterator implements Iterator<Integer> {
			int index;

			PrimeIterator() {
				index = -1;
			}

			@Override
			public boolean hasNext() {
				if (index == -1) {
					return n >= 2;
				} else {
					return 2 * (index + 1) + 1 <= n;
				}
			}

			@Override
			public Integer next() {
				if (index == -1) {
					if (n >= 2) {
						index = p.nextClearBit(0);
						return 2;
					} else {
						throw new NoSuchElementException();
					}
				} else {
					int ret = 2 * (index + 1) + 1;

					if (ret <= n) {
						index = p.nextClearBit(index + 1);

						return ret;
					} else {
						throw new NoSuchElementException();
					}
				}
			}
		}

		static boolean isPrime(long n) {
			if (n == 2) {
				return true;
			}

			if (n == 1 || (n & 0x1) == 0) {
				return false;
			}

			for (long i = 3; i * i <= n; i += 2) {
				if (n % i == 0) {
					return false;
				}
			}

			return true;
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(INPUT == null ? System.in : new ByteArrayInputStream(INPUT.getBytes()));
		pr = new Printer(System.out);

		solve();

//		pr.close();
		pr.flush();
//		sc.close();
	}

	static String INPUT = null;

	private static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0