結果
問題 | No.3079 アルベド |
ユーザー | kusagame12 |
提出日時 | 2023-11-09 15:46:58 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 944 bytes |
コンパイル時間 | 2,570 ms |
コンパイル使用メモリ | 80,940 KB |
実行使用メモリ | 129,456 KB |
最終ジャッジ日時 | 2024-09-26 00:22:18 |
合計ジャッジ時間 | 9,095 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); for(int i = 0 ; i < n ; i++){ int cnt = constructPrimeNumbers(sc.nextInt()); System.out.println(cnt); } } private static int constructPrimeNumbers(int maxNumber) { int cnt = 0; boolean[] targetNumbers = new boolean[maxNumber + 1]; Arrays.fill(targetNumbers, true); targetNumbers[0] = false; targetNumbers[1] = false; int sqrt = (int) Math.sqrt(maxNumber); for (int i = 2; i <= sqrt; i++) { int firstNum = i; if (targetNumbers[i]) { for (int j = i * firstNum; j < targetNumbers.length; j = j + firstNum) { targetNumbers[j] = false; } } } for (int i = 2; i < targetNumbers.length; i++) { if (targetNumbers[i]) { cnt++; } } return cnt; } }