結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー tonyu0tonyu0
提出日時 2020-05-17 19:44:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 107 ms / 1,000 ms
コード長 579 bytes
コンパイル時間 979 ms
コンパイル使用メモリ 100,316 KB
実行使用メモリ 14,732 KB
最終ジャッジ日時 2024-04-08 12:42:28
合計ジャッジ時間 3,059 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,676 KB
testcase_01 AC 3 ms
6,676 KB
testcase_02 AC 3 ms
6,676 KB
testcase_03 AC 12 ms
6,676 KB
testcase_04 AC 3 ms
6,676 KB
testcase_05 AC 101 ms
14,732 KB
testcase_06 AC 53 ms
10,516 KB
testcase_07 AC 3 ms
6,676 KB
testcase_08 AC 3 ms
6,676 KB
testcase_09 AC 3 ms
6,676 KB
testcase_10 AC 3 ms
6,676 KB
testcase_11 AC 3 ms
6,676 KB
testcase_12 AC 4 ms
6,676 KB
testcase_13 AC 3 ms
6,676 KB
testcase_14 AC 4 ms
6,676 KB
testcase_15 AC 3 ms
6,676 KB
testcase_16 AC 3 ms
6,676 KB
testcase_17 AC 3 ms
6,676 KB
testcase_18 AC 3 ms
6,676 KB
testcase_19 AC 13 ms
6,676 KB
testcase_20 AC 32 ms
6,800 KB
testcase_21 AC 15 ms
6,676 KB
testcase_22 AC 13 ms
6,676 KB
testcase_23 AC 22 ms
6,800 KB
testcase_24 AC 31 ms
6,800 KB
testcase_25 AC 51 ms
10,516 KB
testcase_26 AC 51 ms
10,516 KB
testcase_27 AC 10 ms
6,676 KB
testcase_28 AC 23 ms
6,800 KB
testcase_29 AC 50 ms
10,516 KB
testcase_30 AC 11 ms
6,676 KB
testcase_31 AC 43 ms
10,516 KB
testcase_32 AC 51 ms
10,516 KB
testcase_33 AC 106 ms
14,732 KB
testcase_34 AC 107 ms
14,732 KB
testcase_35 AC 95 ms
14,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <iomanip>
#include <algorithm>
#include <cmath>
using namespace std;
using ll = long long;

ll n, l;
int main()
{
  cin >> n >> l;
  vector<ll> prime;
  vector<bool> is_prime(10000010, true);
  for (ll i = 2; i < l; ++i)
  {
    if (is_prime[i])
    {
      prime.push_back(i);
      for (ll j = i + i; j < l; j += i)
      {
        is_prime[j] = false;
      }
    }
  }

  ll ans = 0;
  for (int p : prime)
  {
    ll all = p * ~-n;
    if (all <= l)
    {
      ans += l - all + 1;
    }
  }
  cout << ans << endl;
  return 0;
}
0