結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー atjh16atjh16
提出日時 2021-09-12 16:21:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 618 bytes
コンパイル時間 1,806 ms
コンパイル使用メモリ 171,252 KB
実行使用メモリ 7,408 KB
最終ジャッジ日時 2024-06-24 06:29:19
合計ジャッジ時間 6,267 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 534 ms
7,348 KB
testcase_03 WA -
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 492 ms
7,196 KB
testcase_13 AC 191 ms
5,416 KB
testcase_14 AC 251 ms
6,028 KB
testcase_15 AC 326 ms
6,056 KB
testcase_16 AC 83 ms
5,376 KB
testcase_17 AC 20 ms
5,396 KB
testcase_18 AC 42 ms
5,468 KB
testcase_19 AC 518 ms
7,172 KB
testcase_20 AC 137 ms
5,632 KB
testcase_21 AC 604 ms
7,408 KB
testcase_22 AC 12 ms
7,404 KB
testcase_23 AC 70 ms
7,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

long long l, r, m = 0;
bool f[2000001];
vector<long long> p = { 2 };

int main()
{
	cin >> l >> r;

	for (long long i = 3; i <= r * 2; i += 2) {
		if (!f[i]) {
			p.push_back(i);

			for (long long j = i * i; j <= r * 2; j += i * 2) {
				f[j] = 1;
			}
		}
	}

	for (long long i = l; i <= r; i++) {
		for (long long j = i; j <= i + 2; j++) {
			long long n = (i + j) * (j - i + 1) / 2;
			bool f = 0;

			for (long long k : p) {
				if (n % k == 0) {
					f = 1;
					break;
				}

				if (k > sqrt(n))
					break;
			}

			if (!f)
				m++;
		}
	}

	cout << m << endl;
}
0