結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー ohreitetsuohreitetsu
提出日時 2021-09-04 15:11:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,210 ms / 2,000 ms
コード長 580 bytes
コンパイル時間 581 ms
コンパイル使用メモリ 71,536 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-18 01:51:49
合計ジャッジ時間 7,898 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1,096 ms
6,820 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 2 ms
6,824 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 3 ms
6,816 KB
testcase_12 AC 1,017 ms
6,820 KB
testcase_13 AC 368 ms
6,816 KB
testcase_14 AC 523 ms
6,816 KB
testcase_15 AC 683 ms
6,816 KB
testcase_16 AC 148 ms
6,816 KB
testcase_17 AC 29 ms
6,816 KB
testcase_18 AC 75 ms
6,820 KB
testcase_19 AC 1,020 ms
6,816 KB
testcase_20 AC 282 ms
6,820 KB
testcase_21 AC 1,210 ms
6,816 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 133 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <math.h>
using namespace std;
typedef long long LL;
int IsPrime(LL n)
{
	int i;
	if (n < 2) {
		return 0;
	}
	else if (n == 2) {
		return 1;
	}
	if (n % 2 == 0) {
		return 0;
	}
	double sqrtNum = sqrt((double)n);
	for (i = 3; i <= sqrtNum; i += 2) {
		if (n % i == 0) {
			return 0;
		}
	}
	return 1;
}
int main()
{
	LL L, R,A;
	cin >> L >> R;
	int Count = 0;
	for (A = L; A <= R; A++) {
		if (IsPrime(A)) {
			Count++;
		}
	}
	for (A = L; A < R; A++) {
		if (IsPrime(A+A+1)) {
			Count++;
		}
	}
	cout << Count << endl;
	return 0;
}
0