結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー okayunonahaokayunonaha
提出日時 2016-08-06 01:19:16
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 98 ms / 1,000 ms
コード長 600 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 23,680 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-05-09 10:46:13
合計ジャッジ時間 1,857 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 6 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 74 ms
10,756 KB
testcase_06 AC 36 ms
6,528 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 0 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 0 ms
5,376 KB
testcase_16 AC 0 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 6 ms
5,376 KB
testcase_20 AC 22 ms
5,376 KB
testcase_21 AC 8 ms
5,376 KB
testcase_22 AC 6 ms
5,376 KB
testcase_23 AC 13 ms
5,376 KB
testcase_24 AC 20 ms
5,376 KB
testcase_25 AC 39 ms
6,400 KB
testcase_26 AC 34 ms
6,400 KB
testcase_27 AC 4 ms
5,376 KB
testcase_28 AC 14 ms
5,376 KB
testcase_29 AC 34 ms
6,272 KB
testcase_30 AC 4 ms
5,376 KB
testcase_31 AC 28 ms
5,504 KB
testcase_32 AC 35 ms
6,400 KB
testcase_33 AC 98 ms
11,368 KB
testcase_34 AC 95 ms
11,392 KB
testcase_35 AC 75 ms
10,368 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:21:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   21 |         scanf("%Ld %Ld", &N, &L);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
using namespace std;

bool x[10000010];
void sosu(int n, int l) {
	for (int i = 2; i <= l; i++) {
		if(!x[i]){
		for (int j = 2; i*j <= l; j++) {
			x[i * j] = true;
		}
		}
	}
	/*for (int i = 2; i <= l; i++) {
	if(!x[i]) cout << i << " ";
	}
	cout << endl;
	*/
}
int main(void) {
	long long int tmp, N, L, d, round = 0, ans = 1;
	scanf("%Ld %Ld", &N, &L);
	sosu(N,L);

	for (int i = 2; ; i++) {
		if(!x[i]){ d = i;
		tmp = (i-1) * (N-1)+N;
		if(tmp > L+1) break;
		else tmp = L+1 - tmp + 1;
		round += tmp;
		}
	}

	printf("%Ld\n", round);
	//else cout << 0 << endl;

	return 0;
}
0