結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー YamaKasaYamaKasa
提出日時 2018-09-19 17:29:03
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 835 bytes
コンパイル時間 2,231 ms
コンパイル使用メモリ 77,624 KB
実行使用メモリ 61,380 KB
最終ジャッジ日時 2024-07-18 08:18:52
合計ジャッジ時間 11,571 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,344 KB
testcase_01 AC 131 ms
41,132 KB
testcase_02 AC 131 ms
41,236 KB
testcase_03 AC 158 ms
41,912 KB
testcase_04 AC 132 ms
41,504 KB
testcase_05 AC 119 ms
40,084 KB
testcase_06 AC 133 ms
41,168 KB
testcase_07 AC 132 ms
41,148 KB
testcase_08 AC 134 ms
41,364 KB
testcase_09 AC 132 ms
41,536 KB
testcase_10 AC 129 ms
41,356 KB
testcase_11 AC 133 ms
41,016 KB
testcase_12 AC 132 ms
41,380 KB
testcase_13 AC 132 ms
41,152 KB
testcase_14 AC 131 ms
41,288 KB
testcase_15 AC 129 ms
41,460 KB
testcase_16 AC 115 ms
40,184 KB
testcase_17 AC 129 ms
41,384 KB
testcase_18 AC 130 ms
41,032 KB
testcase_19 AC 197 ms
42,508 KB
testcase_20 AC 373 ms
47,544 KB
testcase_21 AC 115 ms
40,008 KB
testcase_22 AC 129 ms
41,480 KB
testcase_23 AC 131 ms
41,244 KB
testcase_24 AC 129 ms
41,128 KB
testcase_25 AC 588 ms
47,048 KB
testcase_26 AC 131 ms
41,512 KB
testcase_27 AC 132 ms
41,436 KB
testcase_28 AC 132 ms
41,304 KB
testcase_29 AC 132 ms
41,452 KB
testcase_30 AC 115 ms
39,900 KB
testcase_31 AC 116 ms
40,312 KB
testcase_32 AC 312 ms
44,316 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 533 ms
46,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	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);
		ArrayList<Integer> list = new ArrayList<Integer>();
		for(int i = 2; i <= max; i++) {
			if(isPrime(i)) {
				list.add(i);
			}
		}
		long cnt = 0;
		for(int i = 0; i < list.size(); i++) {
			if(L - (N - 1) * list.get(i) >= 0) {
				cnt += L - (N - 1) * list.get(i) + 1;
			}
		}
		System.out.println(cnt);
	}
	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