結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー htensaihtensai
提出日時 2020-02-03 17:15:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 818 ms / 1,000 ms
コード長 841 bytes
コンパイル時間 2,356 ms
コンパイル使用メモリ 75,436 KB
実行使用メモリ 50,432 KB
最終ジャッジ日時 2024-09-19 02:01:24
合計ジャッジ時間 10,362 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,152 KB
testcase_01 AC 125 ms
41,072 KB
testcase_02 AC 134 ms
41,172 KB
testcase_03 AC 155 ms
42,060 KB
testcase_04 AC 128 ms
41,064 KB
testcase_05 AC 117 ms
39,956 KB
testcase_06 AC 115 ms
40,096 KB
testcase_07 AC 128 ms
41,444 KB
testcase_08 AC 128 ms
41,080 KB
testcase_09 AC 113 ms
40,060 KB
testcase_10 AC 128 ms
41,152 KB
testcase_11 AC 132 ms
41,472 KB
testcase_12 AC 127 ms
41,460 KB
testcase_13 AC 130 ms
41,104 KB
testcase_14 AC 131 ms
41,376 KB
testcase_15 AC 119 ms
40,152 KB
testcase_16 AC 130 ms
41,144 KB
testcase_17 AC 137 ms
41,560 KB
testcase_18 AC 127 ms
41,416 KB
testcase_19 AC 184 ms
42,428 KB
testcase_20 AC 302 ms
47,152 KB
testcase_21 AC 128 ms
41,376 KB
testcase_22 AC 128 ms
41,304 KB
testcase_23 AC 130 ms
41,156 KB
testcase_24 AC 132 ms
41,088 KB
testcase_25 AC 436 ms
46,964 KB
testcase_26 AC 127 ms
41,468 KB
testcase_27 AC 128 ms
41,164 KB
testcase_28 AC 130 ms
41,184 KB
testcase_29 AC 115 ms
40,208 KB
testcase_30 AC 130 ms
41,120 KB
testcase_31 AC 115 ms
40,060 KB
testcase_32 AC 252 ms
44,056 KB
testcase_33 AC 780 ms
50,004 KB
testcase_34 AC 818 ms
50,432 KB
testcase_35 AC 385 ms
46,448 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 = Math.max(m - 2 * (n - 1) + 1, 0);
        ArrayList<Integer> primes = new ArrayList<>();
        primes.add(2);
        for (int i = 3; i * (n - 1) <= m; i += 2) {
            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