結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー htensaihtensai
提出日時 2020-02-03 16:39:07
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 778 bytes
コンパイル時間 2,508 ms
コンパイル使用メモリ 75,804 KB
実行使用メモリ 77,656 KB
最終ジャッジ日時 2024-09-19 00:35:21
合計ジャッジ時間 12,605 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,244 KB
testcase_01 AC 131 ms
41,296 KB
testcase_02 AC 115 ms
40,092 KB
testcase_03 AC 206 ms
43,092 KB
testcase_04 AC 131 ms
41,076 KB
testcase_05 AC 133 ms
41,188 KB
testcase_06 AC 131 ms
41,080 KB
testcase_07 AC 131 ms
41,304 KB
testcase_08 AC 133 ms
41,292 KB
testcase_09 AC 131 ms
41,424 KB
testcase_10 AC 133 ms
41,028 KB
testcase_11 AC 128 ms
41,264 KB
testcase_12 AC 132 ms
40,952 KB
testcase_13 AC 130 ms
41,600 KB
testcase_14 AC 138 ms
41,456 KB
testcase_15 AC 120 ms
39,896 KB
testcase_16 AC 135 ms
41,436 KB
testcase_17 AC 137 ms
41,336 KB
testcase_18 AC 136 ms
41,516 KB
testcase_19 AC 258 ms
44,888 KB
testcase_20 AC 433 ms
48,396 KB
testcase_21 AC 128 ms
41,076 KB
testcase_22 AC 129 ms
40,944 KB
testcase_23 AC 131 ms
41,344 KB
testcase_24 AC 134 ms
41,168 KB
testcase_25 AC 633 ms
52,580 KB
testcase_26 AC 132 ms
41,432 KB
testcase_27 AC 131 ms
41,344 KB
testcase_28 AC 133 ms
41,208 KB
testcase_29 AC 134 ms
41,212 KB
testcase_30 AC 135 ms
41,336 KB
testcase_31 AC 131 ms
41,060 KB
testcase_32 AC 373 ms
48,516 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 600 ms
52,816 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();
        long total = 0;
        TreeSet<Integer> primes = new TreeSet<>();
        for (int i = 2; i * (n - 1) <= m; i++) {
            if (isPrime(i, primes)) {
                primes.add(i);
                total += m - i * (n - 1) + 1;
            }
        }
        System.out.println(total);
    }
    
    static boolean isPrime(int x, TreeSet<Integer> primes) {
        for (int y : primes) {
            if (Math.sqrt(x) < y) {
                break;
            }
            if (x % y == 0) {
                return false;
            }
        }
        return true;
    }
}
0