結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー gu_21816943gu_21816943
提出日時 2017-06-27 01:08:26
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 815 bytes
コンパイル時間 1,922 ms
コンパイル使用メモリ 77,756 KB
実行使用メモリ 58,868 KB
最終ジャッジ日時 2024-10-04 09:57:35
合計ジャッジ時間 5,459 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,792 KB
testcase_01 AC 48 ms
37,004 KB
testcase_02 RE -
testcase_03 AC 69 ms
37,288 KB
testcase_04 AC 50 ms
36,760 KB
testcase_05 AC 50 ms
36,672 KB
testcase_06 AC 49 ms
37,036 KB
testcase_07 AC 50 ms
36,552 KB
testcase_08 AC 49 ms
36,904 KB
testcase_09 AC 51 ms
37,004 KB
testcase_10 AC 50 ms
36,792 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 49 ms
36,568 KB
testcase_14 AC 51 ms
36,920 KB
testcase_15 RE -
testcase_16 AC 52 ms
36,976 KB
testcase_17 AC 50 ms
36,772 KB
testcase_18 AC 50 ms
36,988 KB
testcase_19 AC 83 ms
40,504 KB
testcase_20 AC 104 ms
44,064 KB
testcase_21 AC 51 ms
36,964 KB
testcase_22 AC 51 ms
37,004 KB
testcase_23 AC 49 ms
36,828 KB
testcase_24 AC 52 ms
36,828 KB
testcase_25 AC 124 ms
49,064 KB
testcase_26 AC 50 ms
37,036 KB
testcase_27 RE -
testcase_28 AC 51 ms
36,644 KB
testcase_29 AC 50 ms
36,828 KB
testcase_30 AC 50 ms
36,852 KB
testcase_31 AC 49 ms
36,828 KB
testcase_32 AC 96 ms
43,252 KB
testcase_33 AC 159 ms
58,868 KB
testcase_34 AC 162 ms
58,784 KB
testcase_35 AC 115 ms
47,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

class Main {
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] str = br.readLine().split(" ");
		br.close();
		int num = Integer.parseInt(str[0]) - 1;
		int len = Integer.parseInt(str[1]);

		long count = 0;

		int n = len / num;

		int[] prime = new int[n];

		int i, j,primeNum;

		prime[0] = 0;
		for (i = 1; i < n; i++) {
			prime[i] = 1;
		}
		for (i = 1; i < n; i++) {
			if (prime[i] == 1) {
				primeNum = i + 1;

				for(j=i+primeNum;j<n;j+=primeNum){
					prime[j]=0;
				}
			}
		}

		for(i=1;i<n;i++){
			if(prime[i]==1){
				primeNum=i+1;
				count+=len-num*(i+1)+1;
			}
		}

		System.out.println(count);
	}
}
0