結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー saltcandy123saltcandy123
提出日時 2016-08-05 22:45:48
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 521 bytes
コンパイル時間 501 ms
コンパイル使用メモリ 62,032 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-07 00:34:24
合計ジャッジ時間 2,721 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 9 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 3 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 3 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 9 ms
5,248 KB
testcase_20 AC 22 ms
5,248 KB
testcase_21 AC 11 ms
5,248 KB
testcase_22 AC 10 ms
5,248 KB
testcase_23 AC 15 ms
5,248 KB
testcase_24 AC 22 ms
5,248 KB
testcase_25 AC 36 ms
5,248 KB
testcase_26 AC 36 ms
5,248 KB
testcase_27 AC 7 ms
5,248 KB
testcase_28 AC 16 ms
5,248 KB
testcase_29 AC 36 ms
5,248 KB
testcase_30 AC 8 ms
5,248 KB
testcase_31 AC 29 ms
5,248 KB
testcase_32 AC 35 ms
5,248 KB
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <numeric>
#include <string>
#include <utility>
#include <vector>

int main() {
  long long n, l;
  std::vector<bool> is_prime(5000001, true);
  long long count = 0;
  std::cin >> n >> l;
  is_prime[0] = is_prime[1] = false;
  for (int p = 2; p <= l; ++p) {
    if (is_prime[p]) {
      for (int k = 2; k * p <= l; ++k) {
        is_prime[k * p] = false;
      }
      count += std::max(0LL, l - (n - 1) * p + 1);
    }
  }
  std::cout << count << std::endl;
  return 0;
}
0