結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
40,968 KB
testcase_01 AC 133 ms
41,160 KB
testcase_02 AC 130 ms
41,228 KB
testcase_03 AC 135 ms
41,472 KB
testcase_04 AC 140 ms
41,612 KB
testcase_05 AC 136 ms
41,344 KB
testcase_06 AC 136 ms
41,336 KB
testcase_07 AC 129 ms
40,280 KB
testcase_08 AC 135 ms
41,296 KB
testcase_09 AC 139 ms
41,644 KB
testcase_10 AC 133 ms
41,304 KB
testcase_11 AC 140 ms
41,796 KB
testcase_12 AC 288 ms
46,744 KB
testcase_13 AC 194 ms
45,632 KB
testcase_14 AC 241 ms
46,760 KB
testcase_15 AC 159 ms
43,512 KB
testcase_16 AC 217 ms
45,968 KB
testcase_17 AC 206 ms
46,068 KB
testcase_18 AC 185 ms
45,484 KB
testcase_19 AC 302 ms
47,012 KB
testcase_20 AC 295 ms
46,544 KB
testcase_21 AC 144 ms
41,604 KB
testcase_22 AC 203 ms
46,160 KB
testcase_23 AC 219 ms
46,420 KB
testcase_24 AC 177 ms
44,752 KB
testcase_25 AC 331 ms
47,716 KB
testcase_26 AC 195 ms
45,896 KB
testcase_27 AC 290 ms
47,276 KB
testcase_28 AC 246 ms
46,744 KB
testcase_29 AC 194 ms
45,392 KB
testcase_30 AC 321 ms
47,632 KB
testcase_31 AC 215 ms
46,012 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