結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー crazybbb3crazybbb3
提出日時 2016-11-27 16:58:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 224 ms / 1,000 ms
コード長 2,284 bytes
コンパイル時間 3,570 ms
コンパイル使用メモリ 77,620 KB
実行使用メモリ 66,816 KB
最終ジャッジ日時 2024-12-16 01:46:03
合計ジャッジ時間 12,580 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 176 ms
66,664 KB
testcase_01 AC 182 ms
66,488 KB
testcase_02 AC 185 ms
66,708 KB
testcase_03 AC 183 ms
66,660 KB
testcase_04 AC 179 ms
66,680 KB
testcase_05 AC 181 ms
66,692 KB
testcase_06 AC 187 ms
66,480 KB
testcase_07 AC 174 ms
66,484 KB
testcase_08 AC 179 ms
66,664 KB
testcase_09 AC 172 ms
66,484 KB
testcase_10 AC 170 ms
66,736 KB
testcase_11 AC 186 ms
66,532 KB
testcase_12 AC 171 ms
66,728 KB
testcase_13 AC 181 ms
66,668 KB
testcase_14 AC 180 ms
66,624 KB
testcase_15 AC 173 ms
66,604 KB
testcase_16 AC 179 ms
66,524 KB
testcase_17 AC 185 ms
66,480 KB
testcase_18 AC 175 ms
66,512 KB
testcase_19 AC 178 ms
66,544 KB
testcase_20 AC 187 ms
66,676 KB
testcase_21 AC 183 ms
66,736 KB
testcase_22 AC 177 ms
66,584 KB
testcase_23 AC 175 ms
66,732 KB
testcase_24 AC 177 ms
66,472 KB
testcase_25 AC 179 ms
66,808 KB
testcase_26 AC 186 ms
66,464 KB
testcase_27 AC 181 ms
66,456 KB
testcase_28 AC 176 ms
66,596 KB
testcase_29 AC 182 ms
66,464 KB
testcase_30 AC 176 ms
66,736 KB
testcase_31 AC 175 ms
66,704 KB
testcase_32 AC 200 ms
66,568 KB
testcase_33 AC 224 ms
66,816 KB
testcase_34 AC 197 ms
66,736 KB
testcase_35 AC 195 ms
66,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.StringTokenizer;

public class Main {

    static BufferedReader in;
    static PrintWriter out;
    static StringTokenizer tok;

    void solve() throws IOException {
        long n = nl();
        long l = nl();

        cprime();

        long ans = 0;

        for (int i = 0; i < 1000000; i++) {
            if (prime[i] * (n - 1) > l) {
                break;
            }

            ans += l - prime[i] * (n - 1) + 1;
        }

        out.println(ans);
    }

    int prime_max = 6000000;
    int pidx = 0;
    int[] prime = new int[1000000];
    int[] divp = new int[prime_max];

    void cprime() {
        for (int i = 2; i < prime_max; i++) {
            if (divp[i] == 0) {
                prime[pidx++] = i;
                for (long j = (long) i * i; j < prime_max; j += i) {
                    divp[(int) j] = i;
                }
            }
        }
    }

    String ns() throws IOException {
        while (!tok.hasMoreTokens()) {
            tok = new StringTokenizer(in.readLine(), " ");
        }
        return tok.nextToken();
    }

    int ni() throws IOException {
        return Integer.parseInt(ns());
    }

    long nl() throws IOException {
        return Long.parseLong(ns());
    }

    double nd() throws IOException {
        return Double.parseDouble(ns());
    }

    String[] nsa(int n) throws IOException {
        String[] res = new String[n];
        for (int i = 0; i < n; i++) {
            res[i] = ns();
        }
        return res;
    }

    int[] nia(int n) throws IOException {
        int[] res = new int[n];
        for (int i = 0; i < n; i++) {
            res[i] = ni();
        }
        return res;
    }

    long[] nla(int n) throws IOException {
        long[] res = new long[n];
        for (int i = 0; i < n; i++) {
            res[i] = nl();
        }
        return res;
    }

    public static void main(String[] args) throws IOException {
        in = new BufferedReader(new InputStreamReader(System.in));
        out = new PrintWriter(System.out);
        tok = new StringTokenizer("");
        Main main = new Main();
        main.solve();
        out.close();
    }
}
0