結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー ぴろずぴろず
提出日時 2016-08-16 21:48:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 228 ms / 1,000 ms
コード長 1,057 bytes
コンパイル時間 4,529 ms
コンパイル使用メモリ 77,464 KB
実行使用メモリ 55,464 KB
最終ジャッジ日時 2024-12-15 23:08:31
合計ジャッジ時間 12,954 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 201 ms
54,368 KB
testcase_01 AC 213 ms
55,164 KB
testcase_02 AC 221 ms
55,204 KB
testcase_03 AC 213 ms
55,200 KB
testcase_04 AC 193 ms
55,416 KB
testcase_05 AC 199 ms
55,212 KB
testcase_06 AC 221 ms
55,040 KB
testcase_07 AC 211 ms
55,184 KB
testcase_08 AC 220 ms
54,980 KB
testcase_09 AC 208 ms
55,192 KB
testcase_10 AC 195 ms
55,256 KB
testcase_11 AC 222 ms
54,948 KB
testcase_12 AC 217 ms
55,016 KB
testcase_13 AC 215 ms
54,904 KB
testcase_14 AC 212 ms
55,276 KB
testcase_15 AC 210 ms
55,324 KB
testcase_16 AC 212 ms
54,460 KB
testcase_17 AC 201 ms
55,036 KB
testcase_18 AC 216 ms
54,992 KB
testcase_19 AC 205 ms
55,316 KB
testcase_20 AC 228 ms
55,024 KB
testcase_21 AC 204 ms
55,148 KB
testcase_22 AC 202 ms
55,244 KB
testcase_23 AC 211 ms
54,552 KB
testcase_24 AC 221 ms
55,304 KB
testcase_25 AC 220 ms
54,352 KB
testcase_26 AC 209 ms
54,196 KB
testcase_27 AC 208 ms
55,060 KB
testcase_28 AC 216 ms
55,232 KB
testcase_29 AC 214 ms
55,200 KB
testcase_30 AC 194 ms
55,116 KB
testcase_31 AC 209 ms
55,296 KB
testcase_32 AC 195 ms
55,464 KB
testcase_33 AC 222 ms
55,132 KB
testcase_34 AC 226 ms
55,400 KB
testcase_35 AC 214 ms
55,168 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