結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー YamaKasaYamaKasa
提出日時 2018-09-19 17:47:05
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,067 bytes
コンパイル時間 2,093 ms
コンパイル使用メモリ 77,020 KB
実行使用メモリ 46,300 KB
最終ジャッジ日時 2024-07-18 08:19:14
合計ジャッジ時間 8,208 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 128 ms
41,292 KB
testcase_02 AC 126 ms
41,252 KB
testcase_03 AC 146 ms
41,280 KB
testcase_04 AC 127 ms
41,236 KB
testcase_05 AC 125 ms
41,496 KB
testcase_06 AC 121 ms
40,428 KB
testcase_07 AC 129 ms
41,152 KB
testcase_08 AC 115 ms
40,140 KB
testcase_09 AC 114 ms
40,256 KB
testcase_10 WA -
testcase_11 AC 130 ms
41,316 KB
testcase_12 AC 129 ms
41,212 KB
testcase_13 AC 126 ms
41,248 KB
testcase_14 AC 128 ms
41,276 KB
testcase_15 AC 128 ms
41,500 KB
testcase_16 AC 128 ms
41,248 KB
testcase_17 WA -
testcase_18 AC 128 ms
41,128 KB
testcase_19 AC 153 ms
41,720 KB
testcase_20 AC 159 ms
42,876 KB
testcase_21 AC 131 ms
41,120 KB
testcase_22 AC 129 ms
41,164 KB
testcase_23 AC 132 ms
40,972 KB
testcase_24 AC 126 ms
41,276 KB
testcase_25 AC 163 ms
43,936 KB
testcase_26 AC 129 ms
41,252 KB
testcase_27 AC 117 ms
40,284 KB
testcase_28 AC 114 ms
40,284 KB
testcase_29 AC 121 ms
41,484 KB
testcase_30 AC 113 ms
40,348 KB
testcase_31 AC 123 ms
41,324 KB
testcase_32 AC 155 ms
42,772 KB
testcase_33 AC 173 ms
46,224 KB
testcase_34 AC 176 ms
46,300 KB
testcase_35 AC 157 ms
43,584 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;
				}
			}
		}
	}
//	static boolean isPrime(int n) {
//		if(n == 2) {
//			return true;
//		}
//		if(n % 2 == 0) {
//			return false;
//		}
//        for(int i = 3; i <= (int)Math.sqrt(n); i+=2){
//            if(n % i == 0) {
//                return false;
//            }
//        }
//        return true;
//    }
}
0