結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー gu_21816943gu_21816943
提出日時 2017-06-27 00:57:50
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 755 bytes
コンパイル時間 2,118 ms
コンパイル使用メモリ 75,156 KB
実行使用メモリ 38,780 KB
最終ジャッジ日時 2024-10-04 09:57:17
合計ジャッジ時間 9,820 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,836 KB
testcase_01 AC 52 ms
36,964 KB
testcase_02 AC 51 ms
36,768 KB
testcase_03 AC 74 ms
38,388 KB
testcase_04 AC 51 ms
36,864 KB
testcase_05 AC 51 ms
36,792 KB
testcase_06 AC 52 ms
36,968 KB
testcase_07 AC 50 ms
36,896 KB
testcase_08 AC 52 ms
36,552 KB
testcase_09 AC 51 ms
37,048 KB
testcase_10 AC 50 ms
37,076 KB
testcase_11 AC 50 ms
36,860 KB
testcase_12 AC 52 ms
36,776 KB
testcase_13 AC 50 ms
36,952 KB
testcase_14 AC 50 ms
36,808 KB
testcase_15 AC 50 ms
36,660 KB
testcase_16 AC 49 ms
36,920 KB
testcase_17 AC 50 ms
36,692 KB
testcase_18 AC 51 ms
36,756 KB
testcase_19 AC 127 ms
38,780 KB
testcase_20 AC 335 ms
37,596 KB
testcase_21 AC 51 ms
36,952 KB
testcase_22 AC 51 ms
36,888 KB
testcase_23 AC 50 ms
36,820 KB
testcase_24 AC 50 ms
36,760 KB
testcase_25 AC 626 ms
37,688 KB
testcase_26 AC 50 ms
37,016 KB
testcase_27 AC 50 ms
36,972 KB
testcase_28 AC 51 ms
36,840 KB
testcase_29 AC 49 ms
36,812 KB
testcase_30 AC 50 ms
36,940 KB
testcase_31 AC 51 ms
37,020 KB
testcase_32 AC 282 ms
37,796 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 558 ms
37,568 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 i,j;

		if (num * 2 <= len) {
			count += len - num * 2 + 1;
		}
		boolean flag = true;
		for (i = 3; i <= n; i += 2) {
			for (j = 3; j * j <= i; j += 2) {
				if (i % j == 0) {
					flag = false;
					break;
				}
			}
			if (flag) {
				count += len - num * i + 1;
			}
			flag = true;
		}
		System.out.println(count);
	}
}
0