結果

問題 No.1058 素敵な数
ユーザー htensaihtensai
提出日時 2020-05-26 11:52:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 804 bytes
コンパイル時間 2,348 ms
コンパイル使用メモリ 77,032 KB
実行使用メモリ 41,560 KB
最終ジャッジ日時 2024-10-13 02:37:34
合計ジャッジ時間 4,409 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
40,904 KB
testcase_01 AC 136 ms
41,080 KB
testcase_02 AC 133 ms
41,336 KB
testcase_03 AC 129 ms
40,848 KB
testcase_04 AC 136 ms
41,172 KB
testcase_05 AC 134 ms
41,316 KB
testcase_06 AC 133 ms
41,560 KB
testcase_07 AC 135 ms
41,212 KB
testcase_08 AC 137 ms
41,132 KB
testcase_09 AC 135 ms
41,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
 	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		if (n == 1) {
		    System.out.println(1);
		    return;
		}
		ArrayList<Integer> primes = new ArrayList<>();
		for (int i = 100001; primes.size() < n; i++) {
		    if (isPrime(i)) {
		        primes.add(i);
		    }
		}
		TreeSet<Long> set = new TreeSet<>();
		for (int x : primes) {
		    for (int y : primes) {
		        set.add((long)x * y);
		    }
		}
		for (long x : set) {
		    n--;
		    if (n == 1) {
		        System.out.println(x);
		        return;
		    }
		}
	}
	
	static boolean isPrime(int x) {
	    for (int i = 2; i <= Math.sqrt(x); i++) {
	        if (x % i == 0) {
	            return false;
	        }
	    }
	    return true;
	}
}
0