結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー htensaihtensai
提出日時 2020-02-03 17:23:10
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 664 bytes
コンパイル時間 2,096 ms
コンパイル使用メモリ 77,196 KB
実行使用メモリ 46,184 KB
最終ジャッジ日時 2024-09-19 02:19:45
合計ジャッジ時間 7,811 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
39,728 KB
testcase_01 AC 106 ms
40,152 KB
testcase_02 RE -
testcase_03 AC 111 ms
40,268 KB
testcase_04 AC 110 ms
41,248 KB
testcase_05 AC 108 ms
40,988 KB
testcase_06 AC 117 ms
41,332 KB
testcase_07 AC 108 ms
41,340 KB
testcase_08 AC 102 ms
40,360 KB
testcase_09 AC 101 ms
40,188 KB
testcase_10 AC 114 ms
41,140 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 95 ms
39,848 KB
testcase_14 AC 110 ms
41,220 KB
testcase_15 RE -
testcase_16 AC 133 ms
41,192 KB
testcase_17 AC 137 ms
41,012 KB
testcase_18 AC 131 ms
41,428 KB
testcase_19 AC 146 ms
41,932 KB
testcase_20 AC 138 ms
42,748 KB
testcase_21 AC 115 ms
41,320 KB
testcase_22 AC 109 ms
41,104 KB
testcase_23 AC 117 ms
41,084 KB
testcase_24 AC 117 ms
41,156 KB
testcase_25 AC 142 ms
43,572 KB
testcase_26 AC 110 ms
40,264 KB
testcase_27 RE -
testcase_28 AC 102 ms
40,064 KB
testcase_29 AC 113 ms
41,172 KB
testcase_30 AC 104 ms
40,416 KB
testcase_31 AC 120 ms
41,140 KB
testcase_32 AC 130 ms
42,488 KB
testcase_33 AC 143 ms
45,404 KB
testcase_34 AC 165 ms
46,184 KB
testcase_35 AC 140 ms
43,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[]  args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        int length = m / (n - 1) + 1;
        boolean[] isPrime = new boolean[length];
        isPrime[0] = true;
        isPrime[1] = true;
        long total = 0;
        for (int i = 2; i * (n - 1) <= m; i++) {
            if (!isPrime[i]) {
                total += m - i * (n - 1) + 1;
                for (int j = i * 2; j < length; j += i) {
                    isPrime[j] = true;
                }
            }
        }
        System.out.println(total);
    }
}
0