結果
問題 | No.843 Triple Primes |
ユーザー | Tomoya |
提出日時 | 2019-06-28 22:07:41 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,870 bytes |
コンパイル時間 | 3,565 ms |
コンパイル使用メモリ | 79,320 KB |
実行使用メモリ | 75,460 KB |
最終ジャッジ日時 | 2024-07-02 04:48:25 |
合計ジャッジ時間 | 7,697 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 310 ms
75,324 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
ソースコード
package main.java.yukicoder; import java.util.Scanner; import java.util.ArrayList; import java.util.List; import java.util.Arrays; public class C { public static void main(String[] args) { int maxNumber = 10000000; boolean[] targetNumbers = new boolean[maxNumber + 1]; Arrays.fill(targetNumbers, true); targetNumbers[0] = false; targetNumbers[1] = false; List<Integer> primeNumbers = new ArrayList<Integer>(); int sqrt = (int) Math.sqrt(maxNumber); for(int i=2; i<=sqrt; i++) { // ステップ2:探索リストの先頭の数を素数とし、その倍数を探索リストから篩い落とす。 // ※この時、既に篩い落とされた数(false)は除外する。 int firstNum = i; if (targetNumbers[i]) { for (int j=i*firstNum; j<targetNumbers.length; j+=firstNum) { targetNumbers[j] = false; } } } // ステップ4:探索リストに残った値を素数リストに移して処理終了。 for (int i=2; i<targetNumbers.length; i++) { if (targetNumbers[i]) { primeNumbers.add(i); } } //System.out.println(); Scanner scanner = new Scanner(System.in); double n = Double.parseDouble(scanner.next()); int ans = 0; for(int r=0; r<=Math.sqrt(n); r++) { double val = Math.pow(r, 2); for(int p=0; p<=val; p++) { for(int q=0; q<=val; q++) { if(p+q == val) { if(targetNumbers[p] && targetNumbers[q] && targetNumbers[r]) ans++; } } } } System.out.println(ans); scanner.close(); } }