結果

問題 No.843 Triple Primes
ユーザー amotoma3amotoma3
提出日時 2019-07-06 10:39:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 721 ms / 2,000 ms
コード長 4,572 bytes
コンパイル時間 2,397 ms
コンパイル使用メモリ 78,740 KB
実行使用メモリ 61,080 KB
最終ジャッジ日時 2023-10-19 18:01:20
合計ジャッジ時間 20,754 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
53,536 KB
testcase_01 AC 721 ms
60,952 KB
testcase_02 AC 84 ms
54,136 KB
testcase_03 AC 80 ms
54,116 KB
testcase_04 AC 92 ms
54,456 KB
testcase_05 AC 89 ms
54,096 KB
testcase_06 AC 90 ms
54,124 KB
testcase_07 AC 584 ms
60,836 KB
testcase_08 AC 624 ms
60,968 KB
testcase_09 AC 696 ms
60,668 KB
testcase_10 AC 593 ms
61,080 KB
testcase_11 AC 669 ms
60,976 KB
testcase_12 AC 670 ms
60,908 KB
testcase_13 AC 681 ms
60,836 KB
testcase_14 AC 650 ms
60,856 KB
testcase_15 AC 583 ms
60,928 KB
testcase_16 AC 598 ms
58,916 KB
testcase_17 AC 56 ms
53,500 KB
testcase_18 AC 57 ms
53,504 KB
testcase_19 AC 55 ms
53,496 KB
testcase_20 AC 236 ms
58,752 KB
testcase_21 AC 157 ms
58,500 KB
testcase_22 AC 404 ms
58,736 KB
testcase_23 AC 431 ms
58,860 KB
testcase_24 AC 241 ms
58,628 KB
testcase_25 AC 213 ms
58,412 KB
testcase_26 AC 709 ms
60,928 KB
testcase_27 AC 133 ms
57,808 KB
testcase_28 AC 631 ms
60,628 KB
testcase_29 AC 239 ms
58,780 KB
testcase_30 AC 671 ms
61,004 KB
testcase_31 AC 151 ms
58,140 KB
testcase_32 AC 131 ms
57,772 KB
testcase_33 AC 264 ms
58,828 KB
testcase_34 AC 355 ms
58,780 KB
testcase_35 AC 693 ms
60,824 KB
testcase_36 AC 197 ms
58,864 KB
testcase_37 AC 556 ms
60,928 KB
testcase_38 AC 433 ms
60,880 KB
testcase_39 AC 691 ms
60,856 KB
testcase_40 AC 57 ms
53,520 KB
testcase_41 AC 56 ms
53,512 KB
testcase_42 AC 620 ms
60,764 KB
testcase_43 AC 678 ms
60,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.PrintWriter;
import java.io.BufferedWriter;
import java.util.Set;
import java.util.InputMismatchException;
import java.io.IOException;
import java.util.TreeSet;
import java.util.ArrayList;
import java.util.List;
import java.io.Writer;
import java.io.OutputStreamWriter;
import java.io.InputStream;

/**
 * Built using CHelper plug-in
 * Actual solution is at the top
 */
public class Main {
    public static void main(String[] args) {
        InputStream inputStream = System.in;
        OutputStream outputStream = System.out;
        InputReader in = new InputReader(inputStream);
        OutputWriter out = new OutputWriter(outputStream);
        No843 solver = new No843();
        solver.solve(1, in, out);
        out.close();
    }

    static class No843 {
        public void solve(int testNumber, InputReader in, OutputWriter out) {
            int n = in.readInt();
            List<Integer> primes = new Prime(n).getPrimes();
            Set<Integer> set = new TreeSet<>(primes);

            int ans = 0;
            int m = primes.size();
            for (int i = 0; i < m && primes.get(i) * primes.get(i) <= 2 * n; i++) {
                for (int j = 0; j < m; j++) {
                    if (set.contains(primes.get(i) * primes.get(i) - primes.get(j))) ans++;
                }
            }
            out.printLine(ans);
        }

    }

    static class Prime {
        private int n;
        private boolean[] isPrime;
        private ArrayList<Integer> primes;

        public Prime(int n) {
            this.n = n;
            isPrime = new boolean[n + 1];
            primes = new ArrayList<>();
            sieve();
        }

        private void sieve() {
            for (int i = 2; i <= n; i++) {
                if (!isPrime[i]) {
                    primes.add(i);
                    for (long j = (long) i * i; j <= n; j += i) {
                        isPrime[(int) j] = true;
                    }
                }
            }
        }

        public ArrayList<Integer> getPrimes() {
            return primes;
        }

    }

    static class InputReader {
        private InputStream stream;
        private byte[] buf = new byte[1024];
        private int curChar;
        private int numChars;
        private InputReader.SpaceCharFilter filter;

        public InputReader(InputStream stream) {
            this.stream = stream;
        }

        public int read() {
            if (numChars == -1) {
                throw new InputMismatchException();
            }
            if (curChar >= numChars) {
                curChar = 0;
                try {
                    numChars = stream.read(buf);
                } catch (IOException e) {
                    throw new InputMismatchException();
                }
                if (numChars <= 0) {
                    return -1;
                }
            }
            return buf[curChar++];
        }

        public int readInt() {
            int c = read();
            while (isSpaceChar(c)) {
                c = read();
            }
            int sgn = 1;
            if (c == '-') {
                sgn = -1;
                c = read();
            }
            int res = 0;
            do {
                if (c < '0' || c > '9') {
                    throw new InputMismatchException();
                }
                res *= 10;
                res += c - '0';
                c = read();
            } while (!isSpaceChar(c));
            return res * sgn;
        }

        public boolean isSpaceChar(int c) {
            if (filter != null) {
                return filter.isSpaceChar(c);
            }
            return isWhitespace(c);
        }

        public static boolean isWhitespace(int c) {
            return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1;
        }

        public interface SpaceCharFilter {
            public boolean isSpaceChar(int ch);

        }

    }

    static class OutputWriter {
        private final PrintWriter writer;

        public OutputWriter(OutputStream outputStream) {
            writer = new PrintWriter(new BufferedWriter(new OutputStreamWriter(outputStream)));
        }

        public OutputWriter(Writer writer) {
            this.writer = new PrintWriter(writer);
        }

        public void close() {
            writer.close();
        }

        public void printLine(int i) {
            writer.println(i);
        }

    }
}

0