結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー YamaKasaYamaKasa
提出日時 2018-09-19 17:48:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 177 ms / 1,000 ms
コード長 768 bytes
コンパイル時間 2,035 ms
コンパイル使用メモリ 76,840 KB
実行使用メモリ 46,580 KB
最終ジャッジ日時 2024-07-18 08:19:23
合計ジャッジ時間 7,972 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
40,196 KB
testcase_01 AC 127 ms
41,456 KB
testcase_02 AC 128 ms
41,384 KB
testcase_03 AC 142 ms
41,660 KB
testcase_04 AC 128 ms
41,468 KB
testcase_05 AC 129 ms
41,364 KB
testcase_06 AC 128 ms
41,256 KB
testcase_07 AC 126 ms
41,396 KB
testcase_08 AC 126 ms
41,228 KB
testcase_09 AC 127 ms
41,364 KB
testcase_10 AC 127 ms
41,236 KB
testcase_11 AC 125 ms
41,096 KB
testcase_12 AC 128 ms
41,288 KB
testcase_13 AC 128 ms
41,252 KB
testcase_14 AC 127 ms
41,500 KB
testcase_15 AC 117 ms
41,032 KB
testcase_16 AC 127 ms
41,432 KB
testcase_17 AC 128 ms
41,388 KB
testcase_18 AC 128 ms
41,268 KB
testcase_19 AC 131 ms
41,004 KB
testcase_20 AC 154 ms
42,936 KB
testcase_21 AC 128 ms
41,352 KB
testcase_22 AC 128 ms
41,244 KB
testcase_23 AC 117 ms
40,076 KB
testcase_24 AC 129 ms
41,272 KB
testcase_25 AC 160 ms
43,668 KB
testcase_26 AC 117 ms
40,056 KB
testcase_27 AC 128 ms
41,440 KB
testcase_28 AC 116 ms
40,256 KB
testcase_29 AC 113 ms
40,380 KB
testcase_30 AC 127 ms
41,264 KB
testcase_31 AC 130 ms
41,268 KB
testcase_32 AC 156 ms
42,584 KB
testcase_33 AC 177 ms
46,128 KB
testcase_34 AC 174 ms
46,580 KB
testcase_35 AC 159 ms
43,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	static boolean[] isPrime;
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int L = scan.nextInt();
		scan.close();
		int max = L / (N -1);
		isPrime = new boolean[max + 1];
		long cnt = 0;
		if(max >= 2) {
			aryPrime();
		}

		for(int i = 2; i < max + 1; i++) {
			if(isPrime[i]) {
				cnt += L - (N - 1) * i + 1;
			}
		}
		System.out.println(cnt);
	}
	static void aryPrime(){
		int l = isPrime.length;
		for(int i = 0; i < l; i++) {
			isPrime[i] = true;
		}
		isPrime[0] = false;
		isPrime[1] = false;
		for(int i = 2; i <= (int)Math.sqrt(l); i++) {
			if(isPrime[i]) {
				for(int j = i * 2; j < l; j += i) {
					isPrime[j] = false;
				}
			}
		}
	}
}
0