結果

問題 No.843 Triple Primes
ユーザー ldsybldsyb
提出日時 2019-06-28 22:47:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 550 bytes
コンパイル時間 1,552 ms
コンパイル使用メモリ 169,420 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-02 05:03:09
合計ジャッジ時間 7,877 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 256 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 188 ms
5,376 KB
testcase_08 AC 214 ms
5,376 KB
testcase_09 AC 255 ms
5,376 KB
testcase_10 AC 199 ms
5,376 KB
testcase_11 AC 228 ms
5,376 KB
testcase_12 AC 248 ms
5,376 KB
testcase_13 AC 238 ms
5,376 KB
testcase_14 AC 237 ms
5,376 KB
testcase_15 AC 193 ms
5,376 KB
testcase_16 AC 197 ms
5,376 KB
testcase_17 WA -
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 42 ms
5,376 KB
testcase_21 AC 19 ms
5,376 KB
testcase_22 AC 113 ms
5,376 KB
testcase_23 AC 120 ms
5,376 KB
testcase_24 AC 46 ms
5,376 KB
testcase_25 AC 32 ms
5,376 KB
testcase_26 AC 254 ms
5,376 KB
testcase_27 AC 7 ms
5,376 KB
testcase_28 AC 241 ms
5,376 KB
testcase_29 AC 49 ms
5,376 KB
testcase_30 AC 249 ms
5,376 KB
testcase_31 AC 11 ms
5,376 KB
testcase_32 AC 6 ms
5,376 KB
testcase_33 AC 56 ms
5,376 KB
testcase_34 AC 101 ms
5,376 KB
testcase_35 AC 255 ms
5,376 KB
testcase_36 AC 27 ms
5,376 KB
testcase_37 AC 177 ms
5,376 KB
testcase_38 AC 142 ms
5,376 KB
testcase_39 AC 244 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 WA -
testcase_42 AC 205 ms
5,376 KB
testcase_43 AC 228 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main()
{
	int64_t n;
	cin >> n;

	vector<int64_t> ps;
	ps.emplace_back(2);
	for (int64_t i = 3; i <= n; i += 2)
	{
		bool f = true;
		for (auto &p : ps)
		{
			if (i < p * p)
			{
				break;
			}
			f &= i % p != 0;
		}
		if (f)
		{
			ps.emplace_back(i);
		}
	}

	int64_t ans = 0;
	for (auto &x : ps)
	{
		int64_t r = x * x;
		auto itr = lower_bound(ps.begin(), ps.end(), r - 2);
		if (itr != ps.end() && (*itr == r - 2))
		{
			ans++;
		}
	}
	ans *= 2;
	ans--;

	cout << ans << endl;

	return 0;
}
0