結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー 37zigen37zigen
提出日時 2016-08-05 22:53:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 178 ms / 1,000 ms
コード長 864 bytes
コンパイル時間 2,404 ms
コンパイル使用メモリ 77,124 KB
実行使用メモリ 58,288 KB
最終ジャッジ日時 2024-12-15 21:22:16
合計ジャッジ時間 7,645 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
52,588 KB
testcase_01 AC 112 ms
54,096 KB
testcase_02 AC 97 ms
52,592 KB
testcase_03 AC 135 ms
54,192 KB
testcase_04 AC 110 ms
53,852 KB
testcase_05 AC 108 ms
52,948 KB
testcase_06 AC 111 ms
53,964 KB
testcase_07 AC 113 ms
54,260 KB
testcase_08 AC 113 ms
54,092 KB
testcase_09 AC 108 ms
52,632 KB
testcase_10 AC 113 ms
53,868 KB
testcase_11 AC 95 ms
52,584 KB
testcase_12 AC 101 ms
52,880 KB
testcase_13 AC 100 ms
53,104 KB
testcase_14 AC 107 ms
53,004 KB
testcase_15 AC 102 ms
52,956 KB
testcase_16 AC 102 ms
52,960 KB
testcase_17 AC 107 ms
53,000 KB
testcase_18 AC 112 ms
53,904 KB
testcase_19 AC 128 ms
53,844 KB
testcase_20 AC 141 ms
56,260 KB
testcase_21 AC 106 ms
53,956 KB
testcase_22 AC 99 ms
52,928 KB
testcase_23 AC 108 ms
53,740 KB
testcase_24 AC 109 ms
53,084 KB
testcase_25 AC 146 ms
55,436 KB
testcase_26 AC 108 ms
54,436 KB
testcase_27 AC 110 ms
53,972 KB
testcase_28 AC 95 ms
52,628 KB
testcase_29 AC 108 ms
54,016 KB
testcase_30 AC 97 ms
52,560 KB
testcase_31 AC 99 ms
52,976 KB
testcase_32 AC 140 ms
55,800 KB
testcase_33 AC 176 ms
58,288 KB
testcase_34 AC 178 ms
58,220 KB
testcase_35 AC 153 ms
55,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		solver();
	}

	static void solver() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int l = sc.nextInt();
		if(l/(n-1)>=2){
			boolean[] isPrime = isPrimeArray(l / (n - 1));
			long ans = 0;
			for (int i = 2; i <= l / (n - 1); i++) {
				if (isPrime[i]) {
					ans += l - (n - 1) * i + 1;
				}
			}
			System.out.println(ans);

		}else{
			System.out.println(0);
			return;
		}

	}

	static int count = 0;

	static boolean[] isPrimeArray(int max) {
		boolean[] isPrime = new boolean[max + 1];
		Arrays.fill(isPrime, true);
		isPrime[0] = isPrime[1] = false;
		for (int i = 2; i * i <= max; i++) {
			if (isPrime[i]) {
				for (int j = 2; j * i <= max; j++) {
					isPrime[j * i] = false;
				}
			}
		}
		return isPrime;
	}
}
0