結果

問題 No.732 3PrimeCounting
ユーザー tentententen
提出日時 2020-10-28 10:23:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 703 ms / 3,000 ms
コード長 1,172 bytes
コンパイル時間 4,004 ms
コンパイル使用メモリ 77,724 KB
実行使用メモリ 57,168 KB
最終ジャッジ日時 2024-07-21 22:12:40
合計ジャッジ時間 24,272 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,076 KB
testcase_01 AC 131 ms
54,104 KB
testcase_02 AC 130 ms
54,068 KB
testcase_03 AC 130 ms
54,140 KB
testcase_04 AC 131 ms
54,148 KB
testcase_05 AC 130 ms
54,076 KB
testcase_06 AC 132 ms
54,104 KB
testcase_07 AC 132 ms
53,848 KB
testcase_08 AC 130 ms
54,004 KB
testcase_09 AC 135 ms
53,776 KB
testcase_10 AC 130 ms
53,896 KB
testcase_11 AC 129 ms
54,120 KB
testcase_12 AC 130 ms
54,108 KB
testcase_13 AC 132 ms
53,832 KB
testcase_14 AC 131 ms
54,080 KB
testcase_15 AC 128 ms
53,800 KB
testcase_16 AC 132 ms
53,768 KB
testcase_17 AC 133 ms
54,060 KB
testcase_18 AC 129 ms
53,928 KB
testcase_19 AC 127 ms
53,892 KB
testcase_20 AC 137 ms
54,080 KB
testcase_21 AC 168 ms
54,524 KB
testcase_22 AC 169 ms
54,208 KB
testcase_23 AC 131 ms
54,204 KB
testcase_24 AC 116 ms
52,644 KB
testcase_25 AC 169 ms
54,572 KB
testcase_26 AC 173 ms
54,384 KB
testcase_27 AC 134 ms
54,104 KB
testcase_28 AC 134 ms
53,932 KB
testcase_29 AC 163 ms
54,588 KB
testcase_30 AC 167 ms
55,092 KB
testcase_31 AC 173 ms
54,448 KB
testcase_32 AC 162 ms
54,428 KB
testcase_33 AC 167 ms
54,280 KB
testcase_34 AC 146 ms
54,120 KB
testcase_35 AC 165 ms
54,372 KB
testcase_36 AC 161 ms
54,184 KB
testcase_37 AC 134 ms
54,024 KB
testcase_38 AC 133 ms
53,700 KB
testcase_39 AC 167 ms
54,180 KB
testcase_40 AC 162 ms
54,560 KB
testcase_41 AC 168 ms
54,392 KB
testcase_42 AC 161 ms
54,684 KB
testcase_43 AC 164 ms
54,172 KB
testcase_44 AC 159 ms
54,208 KB
testcase_45 AC 137 ms
53,640 KB
testcase_46 AC 144 ms
53,936 KB
testcase_47 AC 144 ms
54,228 KB
testcase_48 AC 181 ms
54,412 KB
testcase_49 AC 163 ms
54,456 KB
testcase_50 AC 169 ms
54,636 KB
testcase_51 AC 170 ms
54,220 KB
testcase_52 AC 137 ms
53,596 KB
testcase_53 AC 152 ms
54,356 KB
testcase_54 AC 359 ms
56,616 KB
testcase_55 AC 362 ms
56,836 KB
testcase_56 AC 361 ms
56,592 KB
testcase_57 AC 230 ms
54,880 KB
testcase_58 AC 228 ms
54,984 KB
testcase_59 AC 187 ms
54,320 KB
testcase_60 AC 220 ms
54,724 KB
testcase_61 AC 220 ms
54,868 KB
testcase_62 AC 413 ms
56,668 KB
testcase_63 AC 283 ms
54,636 KB
testcase_64 AC 235 ms
54,608 KB
testcase_65 AC 251 ms
54,764 KB
testcase_66 AC 127 ms
53,544 KB
testcase_67 AC 131 ms
53,592 KB
testcase_68 AC 384 ms
56,620 KB
testcase_69 AC 388 ms
56,944 KB
testcase_70 AC 366 ms
56,596 KB
testcase_71 AC 354 ms
56,288 KB
testcase_72 AC 286 ms
54,776 KB
testcase_73 AC 563 ms
56,344 KB
testcase_74 AC 439 ms
56,512 KB
testcase_75 AC 178 ms
54,480 KB
testcase_76 AC 355 ms
56,692 KB
testcase_77 AC 222 ms
54,780 KB
testcase_78 AC 482 ms
57,168 KB
testcase_79 AC 385 ms
56,756 KB
testcase_80 AC 434 ms
56,848 KB
testcase_81 AC 309 ms
56,904 KB
testcase_82 AC 121 ms
52,896 KB
testcase_83 AC 220 ms
54,888 KB
testcase_84 AC 229 ms
55,236 KB
testcase_85 AC 291 ms
54,472 KB
testcase_86 AC 459 ms
57,028 KB
testcase_87 AC 552 ms
56,752 KB
testcase_88 AC 703 ms
56,996 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];
        for (int i = 2; i <= Math.sqrt(n * 3); i++) {
            if (!isNotPrime[i]) {
                for (int j = 2; i * j < n * 3; j++) {
                    isNotPrime[i * j] = true;
                }
            }
        }
        ArrayList<Integer> primes = new ArrayList<>();
        for (int i = 3; i < n * 3; i++) {
            if (!isNotPrime[i]) {
                primes.add(i);
            }
        }
        int[] counts = new int[n * 3];
        counts[8]++;
        int max = 8;
        long ans = 0;
        for (int i = 2; primes.get(i) <= n; i++) {
            for (int j = i + 1; j < primes.size() && primes.get(j) - primes.get(i) <= max; j++) {
                ans += counts[primes.get(j) - primes.get(i)];
            }
            for (int j = 0; j < i; j++) {
                counts[primes.get(i) + primes.get(j)]++;
            }
            max = primes.get(i) + primes.get(i - 1);
        }
        System.out.println(ans);
    }
}
0