結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー TatsuDXTatsuDX
提出日時 2016-09-09 00:40:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 169 ms / 1,000 ms
コード長 672 bytes
コンパイル時間 4,165 ms
コンパイル使用メモリ 77,576 KB
実行使用メモリ 46,732 KB
最終ジャッジ日時 2024-05-09 12:14:52
合計ジャッジ時間 9,256 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,500 KB
testcase_01 AC 129 ms
41,352 KB
testcase_02 AC 129 ms
41,516 KB
testcase_03 AC 134 ms
41,948 KB
testcase_04 AC 127 ms
41,620 KB
testcase_05 AC 128 ms
41,288 KB
testcase_06 AC 127 ms
41,428 KB
testcase_07 AC 124 ms
41,596 KB
testcase_08 AC 123 ms
41,628 KB
testcase_09 AC 123 ms
41,376 KB
testcase_10 AC 120 ms
41,604 KB
testcase_11 AC 124 ms
41,484 KB
testcase_12 AC 126 ms
41,680 KB
testcase_13 AC 130 ms
41,460 KB
testcase_14 AC 112 ms
41,812 KB
testcase_15 AC 126 ms
41,488 KB
testcase_16 AC 126 ms
41,448 KB
testcase_17 AC 131 ms
41,528 KB
testcase_18 AC 129 ms
41,280 KB
testcase_19 AC 143 ms
41,912 KB
testcase_20 AC 132 ms
42,964 KB
testcase_21 AC 123 ms
41,452 KB
testcase_22 AC 125 ms
41,304 KB
testcase_23 AC 114 ms
41,472 KB
testcase_24 AC 126 ms
41,176 KB
testcase_25 AC 154 ms
43,840 KB
testcase_26 AC 124 ms
41,448 KB
testcase_27 AC 126 ms
41,284 KB
testcase_28 AC 123 ms
41,684 KB
testcase_29 AC 126 ms
41,500 KB
testcase_30 AC 124 ms
41,660 KB
testcase_31 AC 133 ms
41,604 KB
testcase_32 AC 148 ms
42,624 KB
testcase_33 AC 169 ms
46,384 KB
testcase_34 AC 168 ms
46,732 KB
testcase_35 AC 153 ms
44,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int n = sc.nextInt(), m = sc.nextInt(), k = m - (n - 1) * 2, t;
		long sum = 0;
		if (k < 0) {
			System.out.println(0);
			return;
		}
		k = m / (n - 1);
		boolean[] b = new boolean[k + 1];
		b[0] = true;
		b[1] = true;
		t = 1;
		while ((t + 1) * (t + 1) <= k) {
			t++;
		}
		for (int i = 2; i <= t; i++) {
			if (b[i]) {
				continue;
			}
			for (int j = i * i; j <= k; j += i) {
				b[j] = true;
			}
		}
		for (int i = 2; i <= k; i++) {
			if (!b[i]) {
				sum += (long) (m - (n - 1) * i + 1);
			}
		}
		System.out.println(sum);
	}
}
0