結果

問題 No.843 Triple Primes
ユーザー QCFiumQCFium
提出日時 2019-06-28 21:36:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 328 ms / 2,000 ms
コード長 642 bytes
コンパイル時間 1,500 ms
コンパイル使用メモリ 173,656 KB
実行使用メモリ 7,552 KB
最終ジャッジ日時 2024-09-19 13:51:36
合計ジャッジ時間 9,236 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
5,504 KB
testcase_01 AC 322 ms
7,552 KB
testcase_02 AC 7 ms
5,504 KB
testcase_03 AC 7 ms
5,504 KB
testcase_04 AC 9 ms
5,504 KB
testcase_05 AC 7 ms
5,504 KB
testcase_06 AC 9 ms
5,504 KB
testcase_07 AC 261 ms
7,040 KB
testcase_08 AC 294 ms
7,168 KB
testcase_09 AC 320 ms
7,424 KB
testcase_10 AC 270 ms
7,040 KB
testcase_11 AC 306 ms
7,168 KB
testcase_12 AC 325 ms
7,424 KB
testcase_13 AC 305 ms
7,296 KB
testcase_14 AC 302 ms
7,296 KB
testcase_15 AC 252 ms
7,168 KB
testcase_16 AC 257 ms
7,040 KB
testcase_17 AC 6 ms
5,376 KB
testcase_18 AC 6 ms
5,504 KB
testcase_19 AC 7 ms
5,632 KB
testcase_20 AC 52 ms
6,144 KB
testcase_21 AC 29 ms
5,760 KB
testcase_22 AC 137 ms
6,528 KB
testcase_23 AC 148 ms
6,656 KB
testcase_24 AC 58 ms
6,144 KB
testcase_25 AC 40 ms
6,016 KB
testcase_26 AC 319 ms
7,424 KB
testcase_27 AC 13 ms
5,760 KB
testcase_28 AC 316 ms
7,296 KB
testcase_29 AC 65 ms
6,144 KB
testcase_30 AC 328 ms
7,424 KB
testcase_31 AC 16 ms
5,760 KB
testcase_32 AC 12 ms
5,632 KB
testcase_33 AC 70 ms
6,272 KB
testcase_34 AC 127 ms
6,528 KB
testcase_35 AC 323 ms
7,552 KB
testcase_36 AC 36 ms
5,888 KB
testcase_37 AC 226 ms
7,040 KB
testcase_38 AC 177 ms
6,784 KB
testcase_39 AC 313 ms
7,296 KB
testcase_40 AC 6 ms
5,504 KB
testcase_41 AC 6 ms
5,504 KB
testcase_42 AC 272 ms
7,296 KB
testcase_43 AC 301 ms
7,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

int ri() {
	int n;
	scanf("%d", &n);
	return n;
}
int is_prime[500001];

int main() {
	int n = ri();
	for (int i = 2; i <= 500000; i++) is_prime[i] = true;
	for (int i = 2; i <= 500000; i++) {
		if (!is_prime[i]) continue;
		for (int j = 2; j * i <= 500000; j++)
			is_prime[j * i] = false;
	}
	std::set<int64_t> primes;
	for (int i = 2; i <= n; i++) if (is_prime[i]) primes.insert(i);
	int res = 0;
	for (auto i : primes) {
		int64_t pow2 = (int64_t) i * i;
		if (pow2 > 2 * n) continue;
		for (auto j : primes) if (pow2 - j <= n && primes.count(pow2 - j)) res++;
	}
	std::cout << res << std::endl;
	
	return 0;
}

0