結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー FF256grhyFF256grhy
提出日時 2016-08-05 23:11:57
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 247 ms / 1,000 ms
コード長 446 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 22,656 KB
実行使用メモリ 40,688 KB
最終ジャッジ日時 2024-05-09 10:00:41
合計ジャッジ時間 9,567 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 238 ms
40,456 KB
testcase_01 AC 237 ms
40,688 KB
testcase_02 AC 229 ms
40,664 KB
testcase_03 AC 229 ms
40,484 KB
testcase_04 AC 247 ms
40,524 KB
testcase_05 AC 229 ms
40,572 KB
testcase_06 AC 232 ms
40,536 KB
testcase_07 AC 220 ms
40,596 KB
testcase_08 AC 224 ms
40,528 KB
testcase_09 AC 222 ms
40,480 KB
testcase_10 AC 218 ms
40,604 KB
testcase_11 AC 223 ms
40,468 KB
testcase_12 AC 219 ms
40,460 KB
testcase_13 AC 213 ms
40,464 KB
testcase_14 AC 219 ms
40,512 KB
testcase_15 AC 222 ms
40,672 KB
testcase_16 AC 223 ms
40,680 KB
testcase_17 AC 226 ms
40,520 KB
testcase_18 AC 227 ms
40,688 KB
testcase_19 AC 242 ms
40,512 KB
testcase_20 AC 227 ms
40,584 KB
testcase_21 AC 227 ms
40,620 KB
testcase_22 AC 225 ms
40,612 KB
testcase_23 AC 224 ms
40,636 KB
testcase_24 AC 223 ms
40,472 KB
testcase_25 AC 224 ms
40,452 KB
testcase_26 AC 229 ms
40,612 KB
testcase_27 AC 235 ms
40,516 KB
testcase_28 AC 216 ms
40,560 KB
testcase_29 AC 231 ms
40,488 KB
testcase_30 AC 230 ms
40,464 KB
testcase_31 AC 209 ms
40,516 KB
testcase_32 AC 222 ms
40,480 KB
testcase_33 AC 226 ms
40,568 KB
testcase_34 AC 220 ms
40,480 KB
testcase_35 AC 219 ms
40,624 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:10:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |         scanf("%lld%lld", &n, &l);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

typedef long long int LL;

LL n, l, ans;

int comp[10000001];

int main() {
	scanf("%lld%lld", &n, &l);
	
	for(int i = 2; i <= 10000000; i++) {
		if(comp[i] == 0) {
			for(int j = i * 2; j <= 10000000; j += i) {
				comp[j] = 1;
			}
		}
	}
	
	ans = 0;
	for(LL i = 2; i <= 10000000; i++) {
		if(comp[i] == 0) {
			LL temp = l + 1 - i * (n - 1);
			if(temp > 0) { ans += temp; }
		}
	}
	
	printf("%lld\n", ans);
	
	return 0;
}
0