結果

問題 No.843 Triple Primes
ユーザー TomoyaTomoya
提出日時 2019-06-28 23:03:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 325 ms / 2,000 ms
コード長 2,256 bytes
コンパイル時間 5,903 ms
コンパイル使用メモリ 78,696 KB
実行使用メモリ 69,900 KB
最終ジャッジ日時 2024-09-19 14:09:41
合計ジャッジ時間 19,043 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 264 ms
69,524 KB
testcase_01 AC 308 ms
69,764 KB
testcase_02 AC 289 ms
69,780 KB
testcase_03 AC 291 ms
69,652 KB
testcase_04 AC 287 ms
69,776 KB
testcase_05 AC 291 ms
69,708 KB
testcase_06 AC 292 ms
69,724 KB
testcase_07 AC 306 ms
69,900 KB
testcase_08 AC 312 ms
69,696 KB
testcase_09 AC 314 ms
69,856 KB
testcase_10 AC 316 ms
69,860 KB
testcase_11 AC 321 ms
69,724 KB
testcase_12 AC 309 ms
69,788 KB
testcase_13 AC 314 ms
69,700 KB
testcase_14 AC 307 ms
69,700 KB
testcase_15 AC 308 ms
69,624 KB
testcase_16 AC 302 ms
69,720 KB
testcase_17 AC 268 ms
69,384 KB
testcase_18 AC 276 ms
69,332 KB
testcase_19 AC 274 ms
69,616 KB
testcase_20 AC 305 ms
69,760 KB
testcase_21 AC 301 ms
69,668 KB
testcase_22 AC 325 ms
69,708 KB
testcase_23 AC 311 ms
69,780 KB
testcase_24 AC 312 ms
69,868 KB
testcase_25 AC 303 ms
69,740 KB
testcase_26 AC 319 ms
69,648 KB
testcase_27 AC 298 ms
69,860 KB
testcase_28 AC 305 ms
69,844 KB
testcase_29 AC 300 ms
69,516 KB
testcase_30 AC 298 ms
69,828 KB
testcase_31 AC 300 ms
69,784 KB
testcase_32 AC 290 ms
69,784 KB
testcase_33 AC 301 ms
69,780 KB
testcase_34 AC 294 ms
69,764 KB
testcase_35 AC 301 ms
69,764 KB
testcase_36 AC 299 ms
69,512 KB
testcase_37 AC 300 ms
69,788 KB
testcase_38 AC 301 ms
69,784 KB
testcase_39 AC 305 ms
69,764 KB
testcase_40 AC 267 ms
69,456 KB
testcase_41 AC 272 ms
69,636 KB
testcase_42 AC 311 ms
69,668 KB
testcase_43 AC 311 ms
69,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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;

    // ステップ1:「2から上限値までの整数」を探索リストに入れる。
        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);

    // ステップ3:探索リストの先頭の値が、引数の平方根に達するまでふるい落とし操作を続ける。
        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());   
        //double n = 500000;
        int ans = 0;
        int size = primeNumbers.size();
        for(int r=0; r<size; r++) {
            Integer rval = primeNumbers.get(r);
            if(rval > n) break;
            int ival = (int)Math.pow(rval, 2);
            for(int p=0; p<size; p++) {
                Integer pval = primeNumbers.get(p);
                if(ival-pval > size || ival-pval < 0) break;
                if(pval > n || ival-pval > n) continue;
                if(targetNumbers[ival-pval]) ans++;
            }
        }

        System.out.println(ans);
        scanner.close();
    }
}
0