結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
46,796 KB
testcase_01 AC 131 ms
41,184 KB
testcase_02 AC 129 ms
41,516 KB
testcase_03 AC 198 ms
41,876 KB
testcase_04 AC 132 ms
40,968 KB
testcase_05 AC 119 ms
40,236 KB
testcase_06 AC 116 ms
40,016 KB
testcase_07 AC 129 ms
41,324 KB
testcase_08 AC 129 ms
41,528 KB
testcase_09 AC 128 ms
41,524 KB
testcase_10 AC 130 ms
41,364 KB
testcase_11 AC 133 ms
41,364 KB
testcase_12 AC 117 ms
40,144 KB
testcase_13 AC 132 ms
41,368 KB
testcase_14 AC 128 ms
41,120 KB
testcase_15 AC 129 ms
41,332 KB
testcase_16 AC 133 ms
41,292 KB
testcase_17 AC 118 ms
40,116 KB
testcase_18 AC 131 ms
41,216 KB
testcase_19 AC 421 ms
42,644 KB
testcase_20 TLE -
testcase_21 AC 131 ms
41,516 KB
testcase_22 AC 114 ms
40,152 KB
testcase_23 AC 130 ms
41,436 KB
testcase_24 AC 132 ms
41,120 KB
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

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(long i = 2; i <= (int)Math.sqrt(n); i++){
            if(n % i == 0) {
                return false;
            }
        }
        return true;
    }
}
0