結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,408 KB
testcase_01 AC 134 ms
41,388 KB
testcase_02 AC 133 ms
41,612 KB
testcase_03 AC 141 ms
41,552 KB
testcase_04 AC 136 ms
41,528 KB
testcase_05 AC 135 ms
41,080 KB
testcase_06 AC 137 ms
41,344 KB
testcase_07 AC 139 ms
41,452 KB
testcase_08 AC 136 ms
41,432 KB
testcase_09 AC 136 ms
41,268 KB
testcase_10 AC 133 ms
41,572 KB
testcase_11 AC 135 ms
41,352 KB
testcase_12 AC 136 ms
41,560 KB
testcase_13 AC 133 ms
41,184 KB
testcase_14 AC 136 ms
41,344 KB
testcase_15 AC 136 ms
41,340 KB
testcase_16 AC 135 ms
41,468 KB
testcase_17 AC 133 ms
41,212 KB
testcase_18 AC 134 ms
41,484 KB
testcase_19 AC 152 ms
42,072 KB
testcase_20 AC 152 ms
42,920 KB
testcase_21 AC 132 ms
41,280 KB
testcase_22 AC 135 ms
41,424 KB
testcase_23 AC 137 ms
41,292 KB
testcase_24 AC 136 ms
41,364 KB
testcase_25 AC 160 ms
43,776 KB
testcase_26 AC 135 ms
41,560 KB
testcase_27 AC 134 ms
41,572 KB
testcase_28 AC 136 ms
41,300 KB
testcase_29 AC 133 ms
41,364 KB
testcase_30 AC 134 ms
41,312 KB
testcase_31 AC 138 ms
41,356 KB
testcase_32 AC 153 ms
42,496 KB
testcase_33 AC 178 ms
46,244 KB
testcase_34 AC 174 ms
46,316 KB
testcase_35 AC 159 ms
43,400 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