結果

問題 No.843 Triple Primes
ユーザー htensaihtensai
提出日時 2019-12-09 23:56:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 244 ms / 2,000 ms
コード長 989 bytes
コンパイル時間 2,259 ms
コンパイル使用メモリ 75,772 KB
実行使用メモリ 48,332 KB
最終ジャッジ日時 2024-06-23 08:52:44
合計ジャッジ時間 11,920 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,196 KB
testcase_01 AC 227 ms
47,960 KB
testcase_02 AC 121 ms
41,856 KB
testcase_03 AC 132 ms
41,288 KB
testcase_04 AC 126 ms
41,552 KB
testcase_05 AC 122 ms
41,588 KB
testcase_06 AC 136 ms
41,508 KB
testcase_07 AC 222 ms
45,300 KB
testcase_08 AC 208 ms
44,812 KB
testcase_09 AC 225 ms
48,076 KB
testcase_10 AC 210 ms
44,728 KB
testcase_11 AC 244 ms
47,684 KB
testcase_12 AC 241 ms
47,932 KB
testcase_13 AC 229 ms
47,856 KB
testcase_14 AC 221 ms
45,204 KB
testcase_15 AC 207 ms
44,848 KB
testcase_16 AC 222 ms
44,872 KB
testcase_17 AC 115 ms
41,328 KB
testcase_18 AC 118 ms
41,424 KB
testcase_19 AC 110 ms
41,344 KB
testcase_20 AC 184 ms
43,484 KB
testcase_21 AC 158 ms
42,704 KB
testcase_22 AC 184 ms
43,992 KB
testcase_23 AC 195 ms
43,956 KB
testcase_24 AC 195 ms
43,704 KB
testcase_25 AC 171 ms
43,008 KB
testcase_26 AC 236 ms
47,820 KB
testcase_27 AC 149 ms
42,096 KB
testcase_28 AC 229 ms
45,728 KB
testcase_29 AC 195 ms
43,640 KB
testcase_30 AC 233 ms
48,332 KB
testcase_31 AC 142 ms
42,060 KB
testcase_32 AC 147 ms
42,176 KB
testcase_33 AC 196 ms
43,304 KB
testcase_34 AC 203 ms
44,280 KB
testcase_35 AC 242 ms
48,000 KB
testcase_36 AC 172 ms
42,960 KB
testcase_37 AC 209 ms
44,772 KB
testcase_38 AC 205 ms
44,416 KB
testcase_39 AC 239 ms
45,816 KB
testcase_40 AC 122 ms
41,412 KB
testcase_41 AC 122 ms
41,260 KB
testcase_42 AC 230 ms
45,044 KB
testcase_43 AC 235 ms
45,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
   public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        TreeSet<Integer> primeSet = new TreeSet<>();
        for (int i = 2; i <= n; i++) {
            if (isPrime(i, primeSet)) {
                primeSet.add(i);
            }
        }
        int count = 0;
        for (int x : primeSet) {
            int y = (int)(Math.sqrt(2 + x));
            if (primeSet.contains(y) && y * y == 2 + x) {
                if (x == 2) {
                    count++;
                } else {
                    count += 2;
                }
            }
        }
        System.out.println(count);
    }
    
    static boolean isPrime(int x, TreeSet<Integer> set) {
        for (int y : set) {
            if (Math.sqrt(x) < y) {
                return true;
            }
            if (x % y == 0) {
                return false;
            }
        }
        return true;
    }
}
0