結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー htensaihtensai
提出日時 2020-02-03 17:12:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 770 ms / 1,000 ms
コード長 784 bytes
コンパイル時間 2,297 ms
コンパイル使用メモリ 75,324 KB
実行使用メモリ 53,180 KB
最終ジャッジ日時 2024-09-19 01:56:22
合計ジャッジ時間 9,180 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,092 KB
testcase_01 AC 112 ms
41,356 KB
testcase_02 AC 102 ms
40,056 KB
testcase_03 AC 155 ms
41,688 KB
testcase_04 AC 109 ms
40,784 KB
testcase_05 AC 107 ms
40,360 KB
testcase_06 AC 111 ms
41,024 KB
testcase_07 AC 94 ms
39,620 KB
testcase_08 AC 112 ms
41,252 KB
testcase_09 AC 111 ms
41,488 KB
testcase_10 AC 116 ms
41,480 KB
testcase_11 AC 107 ms
40,908 KB
testcase_12 AC 99 ms
40,176 KB
testcase_13 AC 100 ms
40,040 KB
testcase_14 AC 113 ms
41,328 KB
testcase_15 AC 100 ms
40,180 KB
testcase_16 AC 100 ms
40,112 KB
testcase_17 AC 95 ms
39,772 KB
testcase_18 AC 107 ms
40,924 KB
testcase_19 AC 160 ms
42,824 KB
testcase_20 AC 268 ms
46,436 KB
testcase_21 AC 121 ms
41,528 KB
testcase_22 AC 115 ms
41,856 KB
testcase_23 AC 121 ms
41,464 KB
testcase_24 AC 110 ms
41,068 KB
testcase_25 AC 389 ms
47,076 KB
testcase_26 AC 100 ms
40,268 KB
testcase_27 AC 105 ms
40,876 KB
testcase_28 AC 109 ms
41,156 KB
testcase_29 AC 114 ms
41,320 KB
testcase_30 AC 121 ms
41,772 KB
testcase_31 AC 118 ms
41,652 KB
testcase_32 AC 242 ms
44,160 KB
testcase_33 AC 724 ms
53,180 KB
testcase_34 AC 770 ms
50,464 KB
testcase_35 AC 370 ms
46,840 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;
        ArrayList<Integer> primes = new ArrayList<>();
        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, ArrayList<Integer> primes) {
        for (int y : primes) {
            if (Math.sqrt(x) < y) {
                break;
            }
            if (x % y == 0) {
                return false;
            }
        }
        return true;
    }
}
0