結果

問題 No.826 連絡網
ユーザー ks2mks2m
提出日時 2019-05-03 22:00:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 333 ms / 2,000 ms
コード長 1,017 bytes
コンパイル時間 2,320 ms
コンパイル使用メモリ 77,820 KB
実行使用メモリ 48,064 KB
最終ジャッジ日時 2024-11-24 02:22:18
合計ジャッジ時間 9,684 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,432 KB
testcase_01 AC 127 ms
41,144 KB
testcase_02 AC 130 ms
41,416 KB
testcase_03 AC 136 ms
41,440 KB
testcase_04 AC 138 ms
41,608 KB
testcase_05 AC 121 ms
40,288 KB
testcase_06 AC 125 ms
40,344 KB
testcase_07 AC 125 ms
40,388 KB
testcase_08 AC 133 ms
41,680 KB
testcase_09 AC 137 ms
41,688 KB
testcase_10 AC 134 ms
41,524 KB
testcase_11 AC 135 ms
41,372 KB
testcase_12 AC 281 ms
46,728 KB
testcase_13 AC 204 ms
45,892 KB
testcase_14 AC 232 ms
46,364 KB
testcase_15 AC 155 ms
43,356 KB
testcase_16 AC 217 ms
46,152 KB
testcase_17 AC 205 ms
45,808 KB
testcase_18 AC 199 ms
46,004 KB
testcase_19 AC 305 ms
47,436 KB
testcase_20 AC 304 ms
47,064 KB
testcase_21 AC 140 ms
41,504 KB
testcase_22 AC 207 ms
45,704 KB
testcase_23 AC 219 ms
46,228 KB
testcase_24 AC 183 ms
44,948 KB
testcase_25 AC 330 ms
48,064 KB
testcase_26 AC 196 ms
45,828 KB
testcase_27 AC 289 ms
47,036 KB
testcase_28 AC 243 ms
46,828 KB
testcase_29 AC 205 ms
46,312 KB
testcase_30 AC 333 ms
47,732 KB
testcase_31 AC 217 ms
45,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Scanner;
import java.util.Set;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int p= sc.nextInt();
		sc.close();

		if (p == 1) {
			System.out.println(1);
			return;
		}

		List<Integer> sosuu = sosuuList(n);
		Set<Integer> set = new HashSet<Integer>();
		int n2 = n / 2;
		for (Integer o : sosuu) {
			if (o > n2) {
				set.add(o);
			}
		}

		if (set.contains(p)) {
			System.out.println(1);
		} else {
			System.out.println(n - set.size() - 1);
		}
	}

	static List<Integer> sosuuList(int n) {
		List<Integer> sosuu = new ArrayList<Integer>();
		for (int i = 2; i <= n; i++) {
			int r = (int) Math.sqrt(i);
			boolean flg = false;
			for (Integer o : sosuu) {
				if (r < o) {
					break;
				}
				if (i % o == 0) {
					flg = true;
					break;
				}
			}
			if (!flg) {
				sosuu.add(i);
			}
		}
		return sosuu;
	}
}
0