結果

問題 No.843 Triple Primes
ユーザー tentententen
提出日時 2023-08-01 13:12:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 590 ms / 2,000 ms
コード長 2,262 bytes
コンパイル時間 2,809 ms
コンパイル使用メモリ 85,236 KB
実行使用メモリ 57,484 KB
最終ジャッジ日時 2024-10-11 05:00:51
合計ジャッジ時間 19,295 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,520 KB
testcase_01 AC 553 ms
57,484 KB
testcase_02 AC 84 ms
38,032 KB
testcase_03 AC 80 ms
37,616 KB
testcase_04 AC 91 ms
39,432 KB
testcase_05 AC 82 ms
37,760 KB
testcase_06 AC 92 ms
38,896 KB
testcase_07 AC 464 ms
45,912 KB
testcase_08 AC 502 ms
49,748 KB
testcase_09 AC 554 ms
46,496 KB
testcase_10 AC 470 ms
49,720 KB
testcase_11 AC 551 ms
49,916 KB
testcase_12 AC 590 ms
49,764 KB
testcase_13 AC 539 ms
50,040 KB
testcase_14 AC 575 ms
46,580 KB
testcase_15 AC 482 ms
45,996 KB
testcase_16 AC 470 ms
49,552 KB
testcase_17 AC 54 ms
37,164 KB
testcase_18 AC 54 ms
36,860 KB
testcase_19 AC 54 ms
36,856 KB
testcase_20 AC 305 ms
48,248 KB
testcase_21 AC 259 ms
47,696 KB
testcase_22 AC 360 ms
46,368 KB
testcase_23 AC 391 ms
49,244 KB
testcase_24 AC 361 ms
48,704 KB
testcase_25 AC 334 ms
48,584 KB
testcase_26 AC 586 ms
46,424 KB
testcase_27 AC 118 ms
41,000 KB
testcase_28 AC 504 ms
46,436 KB
testcase_29 AC 314 ms
48,400 KB
testcase_30 AC 578 ms
46,568 KB
testcase_31 AC 157 ms
41,744 KB
testcase_32 AC 112 ms
40,064 KB
testcase_33 AC 288 ms
48,556 KB
testcase_34 AC 396 ms
48,792 KB
testcase_35 AC 566 ms
46,060 KB
testcase_36 AC 275 ms
47,924 KB
testcase_37 AC 447 ms
46,284 KB
testcase_38 AC 393 ms
46,328 KB
testcase_39 AC 539 ms
46,136 KB
testcase_40 AC 53 ms
36,856 KB
testcase_41 AC 52 ms
37,164 KB
testcase_42 AC 505 ms
46,012 KB
testcase_43 AC 530 ms
46,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        boolean[] isNotPrimes = new boolean[n + 1];
        TreeSet<Integer> primes = new TreeSet<>();
        ArrayList<Integer> squares = new ArrayList<>();
        for (int i = 2; i <= n; i++) {
            if (!isNotPrimes[i]) {
                primes.add(i);
                if ((long)i * i <= 2 * n) {
                    squares.add(i * i);
                }
                for (int j = 2; j * i <= n; j++) {
                    isNotPrimes[j * i] = true;
                }
            }
        }
        int ans = 0;
        for (int x : squares) {
            for (int y : primes) {
                if (x <= y) {
                    break;
                }
                if (primes.contains(x - y)) {
                    ans++;
                }
            }
        }
        System.out.println(ans);
    }
} 
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0