結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー ぴろずぴろず
提出日時 2016-08-16 21:48:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 258 ms / 1,000 ms
コード長 1,057 bytes
コンパイル時間 2,952 ms
コンパイル使用メモリ 78,564 KB
実行使用メモリ 55,736 KB
最終ジャッジ日時 2024-05-09 10:57:37
合計ジャッジ時間 13,716 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 245 ms
55,380 KB
testcase_01 AC 247 ms
55,584 KB
testcase_02 AC 245 ms
55,424 KB
testcase_03 AC 244 ms
55,472 KB
testcase_04 AC 258 ms
55,380 KB
testcase_05 AC 249 ms
55,392 KB
testcase_06 AC 244 ms
55,564 KB
testcase_07 AC 242 ms
55,200 KB
testcase_08 AC 242 ms
55,312 KB
testcase_09 AC 241 ms
55,736 KB
testcase_10 AC 251 ms
55,260 KB
testcase_11 AC 248 ms
55,444 KB
testcase_12 AC 243 ms
55,680 KB
testcase_13 AC 244 ms
55,448 KB
testcase_14 AC 242 ms
55,276 KB
testcase_15 AC 242 ms
55,564 KB
testcase_16 AC 243 ms
55,504 KB
testcase_17 AC 245 ms
55,448 KB
testcase_18 AC 245 ms
55,484 KB
testcase_19 AC 243 ms
55,196 KB
testcase_20 AC 250 ms
55,540 KB
testcase_21 AC 227 ms
54,564 KB
testcase_22 AC 244 ms
55,312 KB
testcase_23 AC 250 ms
55,648 KB
testcase_24 AC 251 ms
55,668 KB
testcase_25 AC 250 ms
55,372 KB
testcase_26 AC 243 ms
55,648 KB
testcase_27 AC 242 ms
55,404 KB
testcase_28 AC 246 ms
55,224 KB
testcase_29 AC 249 ms
55,292 KB
testcase_30 AC 249 ms
55,440 KB
testcase_31 AC 248 ms
55,648 KB
testcase_32 AC 251 ms
55,564 KB
testcase_33 AC 248 ms
55,332 KB
testcase_34 AC 247 ms
55,588 KB
testcase_35 AC 255 ms
55,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no407;

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

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int l = sc.nextInt();
		ArrayList<Integer> primes = Prime.primeList(5000010);
		long sum = 0;
		for(int p: primes) {
			long a = (long) p * (n - 1) + 1;
			long x = l + 2 - a;
			if (x >= 0) sum += x;
		}
		System.out.println(sum);
	}

}

class Prime {
	public 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]) {
				int j = i * 2;
				while(j<=max) {
					isPrime[j] = false;
					j += i;
				}
			}
		}
		return isPrime;
	}
	public static ArrayList<Integer> primeList(int max) {
		boolean[] isPrime = isPrimeArray(max);
		ArrayList<Integer> primeList = new ArrayList<Integer>();
		for(int i=2;i<=max;i++) {
			if (isPrime[i]) {
				primeList.add(i);
			}
		}
		return primeList;
	}
}
0