結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー htensaihtensai
提出日時 2020-02-03 17:24:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 180 ms / 1,000 ms
コード長 610 bytes
コンパイル時間 2,084 ms
コンパイル使用メモリ 76,336 KB
実行使用メモリ 46,304 KB
最終ジャッジ日時 2024-09-19 02:23:30
合計ジャッジ時間 8,212 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
40,988 KB
testcase_01 AC 131 ms
40,956 KB
testcase_02 AC 131 ms
41,240 KB
testcase_03 AC 136 ms
41,492 KB
testcase_04 AC 131 ms
41,072 KB
testcase_05 AC 133 ms
41,344 KB
testcase_06 AC 136 ms
41,088 KB
testcase_07 AC 133 ms
41,260 KB
testcase_08 AC 131 ms
41,068 KB
testcase_09 AC 131 ms
41,216 KB
testcase_10 AC 129 ms
41,344 KB
testcase_11 AC 132 ms
41,320 KB
testcase_12 AC 131 ms
41,188 KB
testcase_13 AC 133 ms
41,188 KB
testcase_14 AC 130 ms
41,336 KB
testcase_15 AC 130 ms
41,488 KB
testcase_16 AC 132 ms
41,196 KB
testcase_17 AC 130 ms
41,112 KB
testcase_18 AC 132 ms
41,344 KB
testcase_19 AC 146 ms
41,772 KB
testcase_20 AC 151 ms
42,608 KB
testcase_21 AC 118 ms
40,036 KB
testcase_22 AC 132 ms
41,316 KB
testcase_23 AC 132 ms
40,992 KB
testcase_24 AC 134 ms
41,240 KB
testcase_25 AC 158 ms
43,344 KB
testcase_26 AC 134 ms
41,368 KB
testcase_27 AC 133 ms
40,900 KB
testcase_28 AC 132 ms
41,156 KB
testcase_29 AC 142 ms
41,152 KB
testcase_30 AC 144 ms
41,280 KB
testcase_31 AC 131 ms
41,144 KB
testcase_32 AC 150 ms
42,540 KB
testcase_33 AC 178 ms
45,896 KB
testcase_34 AC 180 ms
46,304 KB
testcase_35 AC 157 ms
43,388 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];
        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