結果

問題 No.843 Triple Primes
ユーザー tentententen
提出日時 2022-08-03 11:48:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 1,562 bytes
コンパイル時間 2,696 ms
コンパイル使用メモリ 79,248 KB
実行使用メモリ 52,528 KB
最終ジャッジ日時 2024-09-13 02:30:27
合計ジャッジ時間 7,731 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
50,356 KB
testcase_01 AC 102 ms
52,024 KB
testcase_02 AC 58 ms
50,328 KB
testcase_03 AC 57 ms
50,072 KB
testcase_04 AC 59 ms
49,892 KB
testcase_05 AC 58 ms
50,036 KB
testcase_06 AC 58 ms
50,520 KB
testcase_07 AC 98 ms
52,136 KB
testcase_08 AC 99 ms
52,380 KB
testcase_09 AC 101 ms
52,080 KB
testcase_10 AC 100 ms
52,136 KB
testcase_11 AC 100 ms
52,232 KB
testcase_12 AC 101 ms
51,704 KB
testcase_13 AC 102 ms
51,860 KB
testcase_14 AC 91 ms
51,852 KB
testcase_15 AC 103 ms
52,528 KB
testcase_16 AC 97 ms
52,256 KB
testcase_17 AC 55 ms
50,256 KB
testcase_18 AC 55 ms
49,992 KB
testcase_19 AC 56 ms
52,452 KB
testcase_20 AC 91 ms
51,352 KB
testcase_21 AC 82 ms
51,172 KB
testcase_22 AC 95 ms
52,244 KB
testcase_23 AC 94 ms
52,032 KB
testcase_24 AC 88 ms
51,720 KB
testcase_25 AC 83 ms
51,792 KB
testcase_26 AC 101 ms
52,092 KB
testcase_27 AC 61 ms
50,296 KB
testcase_28 AC 101 ms
52,344 KB
testcase_29 AC 90 ms
51,616 KB
testcase_30 AC 98 ms
52,088 KB
testcase_31 AC 66 ms
50,608 KB
testcase_32 AC 60 ms
50,132 KB
testcase_33 AC 89 ms
51,596 KB
testcase_34 AC 93 ms
52,040 KB
testcase_35 AC 91 ms
51,816 KB
testcase_36 AC 82 ms
51,496 KB
testcase_37 AC 92 ms
52,464 KB
testcase_38 AC 91 ms
51,816 KB
testcase_39 AC 92 ms
51,708 KB
testcase_40 AC 56 ms
50,312 KB
testcase_41 AC 56 ms
50,384 KB
testcase_42 AC 100 ms
52,304 KB
testcase_43 AC 102 ms
52,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        if (n == 1) {
            System.out.println(0);
            return;
        }
        boolean[] isNotPrimes = new boolean[n + 1];
        HashSet<Integer> squares = new HashSet<>();
        int ans = 0;
        for (int i = 2; i <= n; i++) {
            if (!isNotPrimes[i]) {
                for (int j = 2; j * i <= n; j++) {
                    isNotPrimes[j * i] = true;
                }
                if (squares.contains(i + 2)) {
                    ans += 2;
                }
                if (i <= Math.sqrt(Integer.MAX_VALUE)) {
                    squares.add(i * i);
                }
            }
        }
        System.out.println(ans + 1);
    }
    
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0