結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー tentententen
提出日時 2022-08-01 19:07:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 111 ms / 1,000 ms
コード長 1,351 bytes
コンパイル時間 3,185 ms
コンパイル使用メモリ 77,636 KB
実行使用メモリ 43,256 KB
最終ジャッジ日時 2024-07-22 09:58:09
合計ジャッジ時間 5,354 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,948 KB
testcase_01 AC 49 ms
37,148 KB
testcase_02 AC 50 ms
37,044 KB
testcase_03 AC 78 ms
38,024 KB
testcase_04 AC 48 ms
37,140 KB
testcase_05 AC 80 ms
42,932 KB
testcase_06 AC 72 ms
40,824 KB
testcase_07 AC 50 ms
36,936 KB
testcase_08 AC 49 ms
36,904 KB
testcase_09 AC 49 ms
37,232 KB
testcase_10 AC 49 ms
37,320 KB
testcase_11 AC 47 ms
36,860 KB
testcase_12 AC 47 ms
36,860 KB
testcase_13 AC 48 ms
37,240 KB
testcase_14 AC 47 ms
36,744 KB
testcase_15 AC 47 ms
36,916 KB
testcase_16 AC 47 ms
37,076 KB
testcase_17 AC 49 ms
36,948 KB
testcase_18 AC 48 ms
36,772 KB
testcase_19 AC 70 ms
38,320 KB
testcase_20 AC 78 ms
39,640 KB
testcase_21 AC 49 ms
37,968 KB
testcase_22 AC 47 ms
36,992 KB
testcase_23 AC 82 ms
38,940 KB
testcase_24 AC 73 ms
39,100 KB
testcase_25 AC 90 ms
40,664 KB
testcase_26 AC 74 ms
40,684 KB
testcase_27 AC 48 ms
37,612 KB
testcase_28 AC 70 ms
38,764 KB
testcase_29 AC 76 ms
40,672 KB
testcase_30 AC 47 ms
37,616 KB
testcase_31 AC 73 ms
40,116 KB
testcase_32 AC 87 ms
40,424 KB
testcase_33 AC 111 ms
43,256 KB
testcase_34 AC 108 ms
42,880 KB
testcase_35 AC 103 ms
42,528 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();
        int length = sc.nextInt();
        boolean[] isNotPrime = new boolean[length / 2 + 2];
        long ans = 0;
        for (int i = 2; i < isNotPrime.length && i * (n - 1) <= length; i++) {
            if (!isNotPrime[i]) {
                ans += length - i * (n - 1) + 1;
                for (int j = 2; j  * i < isNotPrime.length; j++) {
                    isNotPrime[j * i] = true;
                }
            }
        }
        System.out.println(ans);
    }
}

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