結果

問題 No.732 3PrimeCounting
ユーザー tentententen
提出日時 2021-01-25 21:10:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 521 ms / 3,000 ms
コード長 1,048 bytes
コンパイル時間 3,483 ms
コンパイル使用メモリ 78,056 KB
実行使用メモリ 56,684 KB
最終ジャッジ日時 2024-06-22 17:21:33
合計ジャッジ時間 24,377 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,968 KB
testcase_01 AC 138 ms
53,988 KB
testcase_02 AC 118 ms
53,124 KB
testcase_03 AC 116 ms
52,868 KB
testcase_04 AC 132 ms
53,956 KB
testcase_05 AC 134 ms
54,216 KB
testcase_06 AC 136 ms
53,868 KB
testcase_07 AC 134 ms
54,020 KB
testcase_08 AC 134 ms
54,156 KB
testcase_09 AC 135 ms
53,812 KB
testcase_10 AC 138 ms
53,816 KB
testcase_11 AC 136 ms
54,228 KB
testcase_12 AC 136 ms
53,940 KB
testcase_13 AC 135 ms
54,436 KB
testcase_14 AC 134 ms
54,112 KB
testcase_15 AC 133 ms
54,020 KB
testcase_16 AC 136 ms
54,072 KB
testcase_17 AC 136 ms
54,024 KB
testcase_18 AC 134 ms
53,952 KB
testcase_19 AC 137 ms
54,100 KB
testcase_20 AC 138 ms
53,816 KB
testcase_21 AC 158 ms
54,336 KB
testcase_22 AC 159 ms
54,204 KB
testcase_23 AC 134 ms
53,848 KB
testcase_24 AC 135 ms
54,052 KB
testcase_25 AC 159 ms
54,220 KB
testcase_26 AC 157 ms
54,076 KB
testcase_27 AC 140 ms
53,824 KB
testcase_28 AC 137 ms
54,232 KB
testcase_29 AC 156 ms
54,332 KB
testcase_30 AC 153 ms
53,984 KB
testcase_31 AC 153 ms
54,264 KB
testcase_32 AC 159 ms
54,280 KB
testcase_33 AC 156 ms
54,408 KB
testcase_34 AC 153 ms
54,312 KB
testcase_35 AC 158 ms
54,080 KB
testcase_36 AC 155 ms
54,492 KB
testcase_37 AC 136 ms
54,080 KB
testcase_38 AC 136 ms
54,128 KB
testcase_39 AC 156 ms
54,284 KB
testcase_40 AC 160 ms
54,088 KB
testcase_41 AC 158 ms
54,188 KB
testcase_42 AC 160 ms
54,416 KB
testcase_43 AC 157 ms
54,400 KB
testcase_44 AC 158 ms
54,308 KB
testcase_45 AC 142 ms
54,088 KB
testcase_46 AC 140 ms
53,824 KB
testcase_47 AC 146 ms
53,980 KB
testcase_48 AC 164 ms
54,216 KB
testcase_49 AC 161 ms
54,300 KB
testcase_50 AC 162 ms
54,240 KB
testcase_51 AC 158 ms
54,072 KB
testcase_52 AC 140 ms
54,220 KB
testcase_53 AC 190 ms
54,328 KB
testcase_54 AC 288 ms
56,476 KB
testcase_55 AC 291 ms
56,500 KB
testcase_56 AC 297 ms
56,668 KB
testcase_57 AC 203 ms
54,188 KB
testcase_58 AC 202 ms
54,228 KB
testcase_59 AC 189 ms
54,380 KB
testcase_60 AC 228 ms
54,396 KB
testcase_61 AC 229 ms
54,504 KB
testcase_62 AC 329 ms
56,356 KB
testcase_63 AC 254 ms
54,404 KB
testcase_64 AC 233 ms
54,504 KB
testcase_65 AC 233 ms
54,432 KB
testcase_66 AC 135 ms
54,044 KB
testcase_67 AC 136 ms
53,972 KB
testcase_68 AC 317 ms
56,444 KB
testcase_69 AC 322 ms
56,420 KB
testcase_70 AC 303 ms
56,592 KB
testcase_71 AC 294 ms
56,668 KB
testcase_72 AC 257 ms
54,332 KB
testcase_73 AC 406 ms
56,472 KB
testcase_74 AC 460 ms
56,684 KB
testcase_75 AC 157 ms
54,168 KB
testcase_76 AC 313 ms
56,528 KB
testcase_77 AC 221 ms
54,360 KB
testcase_78 AC 361 ms
56,600 KB
testcase_79 AC 307 ms
56,616 KB
testcase_80 AC 346 ms
56,468 KB
testcase_81 AC 297 ms
56,604 KB
testcase_82 AC 140 ms
54,068 KB
testcase_83 AC 214 ms
54,532 KB
testcase_84 AC 213 ms
54,476 KB
testcase_85 AC 298 ms
54,508 KB
testcase_86 AC 365 ms
56,528 KB
testcase_87 AC 521 ms
56,592 KB
testcase_88 AC 487 ms
56,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        boolean[] isNotPrime = new boolean[n * 3 + 1];
        ArrayList<Integer> primes = new ArrayList<>();
        for (int i = 2; i < isNotPrime.length; i++) {
            if (!isNotPrime[i]) {
                primes.add(i);
                for (int j = 2; j * i < isNotPrime.length; j++) {
                    isNotPrime[j * i] = true;
                }
            }
        }
        int[] counts = new int[n * 3 + 1];
        counts[5] = 1;
        long ans = 0;
        for (int i = 2; primes.get(i) <= n; i++) {
            int x = primes.get(i);
            for (int j = i + 1; j < primes.size() && primes.get(j) < 3 * x; j++) {
                ans += counts[primes.get(j) - x];
            }
            for (int j = 0; j < i; j++) {
                int y = primes.get(j);
                counts[x + y]++;
            }
        }
        System.out.println(ans);
    }
    
}
0