結果

問題 No.843 Triple Primes
ユーザー ks2mks2m
提出日時 2019-06-28 22:22:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 266 ms / 2,000 ms
コード長 1,587 bytes
コンパイル時間 3,157 ms
コンパイル使用メモリ 78,692 KB
実行使用メモリ 46,368 KB
最終ジャッジ日時 2024-09-19 14:06:32
合計ジャッジ時間 10,532 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
36,940 KB
testcase_01 AC 258 ms
46,328 KB
testcase_02 AC 62 ms
38,312 KB
testcase_03 AC 57 ms
37,448 KB
testcase_04 AC 69 ms
38,480 KB
testcase_05 AC 53 ms
37,276 KB
testcase_06 AC 79 ms
38,344 KB
testcase_07 AC 245 ms
46,168 KB
testcase_08 AC 258 ms
46,164 KB
testcase_09 AC 266 ms
46,328 KB
testcase_10 AC 251 ms
45,964 KB
testcase_11 AC 252 ms
46,068 KB
testcase_12 AC 262 ms
46,076 KB
testcase_13 AC 261 ms
46,160 KB
testcase_14 AC 255 ms
46,260 KB
testcase_15 AC 257 ms
46,064 KB
testcase_16 AC 254 ms
46,276 KB
testcase_17 AC 45 ms
36,788 KB
testcase_18 AC 47 ms
37,040 KB
testcase_19 AC 46 ms
36,828 KB
testcase_20 AC 143 ms
44,960 KB
testcase_21 AC 119 ms
43,772 KB
testcase_22 AC 209 ms
45,452 KB
testcase_23 AC 213 ms
45,332 KB
testcase_24 AC 149 ms
44,900 KB
testcase_25 AC 131 ms
44,556 KB
testcase_26 AC 259 ms
46,136 KB
testcase_27 AC 94 ms
40,376 KB
testcase_28 AC 254 ms
46,156 KB
testcase_29 AC 142 ms
44,864 KB
testcase_30 AC 252 ms
46,232 KB
testcase_31 AC 109 ms
41,940 KB
testcase_32 AC 95 ms
40,356 KB
testcase_33 AC 159 ms
45,092 KB
testcase_34 AC 198 ms
45,456 KB
testcase_35 AC 259 ms
46,364 KB
testcase_36 AC 133 ms
44,368 KB
testcase_37 AC 249 ms
46,056 KB
testcase_38 AC 234 ms
45,860 KB
testcase_39 AC 261 ms
46,324 KB
testcase_40 AC 44 ms
36,572 KB
testcase_41 AC 43 ms
36,832 KB
testcase_42 AC 242 ms
46,112 KB
testcase_43 AC 257 ms
46,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		br.close();

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

		List<Integer> sosuu = sosuuList(n);
		int ans = 1;
		for (int i = 1; i < sosuu.size(); i++) {
			int x = sosuu.get(i) + 2;
			Map<Integer, Integer> soinsu = bunkai(x);
			if (soinsu.size() == 1) {
				for (Integer o : soinsu.keySet()) {
					if (soinsu.get(o) == 2) {
						ans += 2;
					}
				}
			}
		}
		System.out.println(ans);
	}

	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;
	}

	static Map<Integer, Integer> bunkai(int n) {
		Map<Integer, Integer> soinsu = new HashMap<Integer, Integer>();
		int end = (int) Math.sqrt(n);
		int d = 2;
		while (n > 1) {
			if (n % d == 0) {
				n /= d;
				if (soinsu.containsKey(d)) {
					soinsu.put(d, soinsu.get(d) + 1);
				} else {
					soinsu.put(d, 1);
				}
				end = (int) Math.sqrt(n);
			} else {
				if (d > end) {
					d = n - 1;
				}
				d++;
			}
		}
		return soinsu;
	}
}
0