結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー not_522not_522
提出日時 2016-12-17 01:18:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 308 ms / 1,000 ms
コード長 2,188 bytes
コンパイル時間 1,646 ms
コンパイル使用メモリ 171,264 KB
実行使用メモリ 134,624 KB
最終ジャッジ日時 2024-05-09 12:41:49
合計ジャッジ時間 5,026 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 18 ms
11,488 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 292 ms
134,492 KB
testcase_06 AC 149 ms
69,092 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 20 ms
11,744 KB
testcase_20 AC 72 ms
36,192 KB
testcase_21 AC 28 ms
19,808 KB
testcase_22 AC 24 ms
19,776 KB
testcase_23 AC 37 ms
19,812 KB
testcase_24 AC 68 ms
36,320 KB
testcase_25 AC 139 ms
68,832 KB
testcase_26 AC 136 ms
68,960 KB
testcase_27 AC 16 ms
11,620 KB
testcase_28 AC 51 ms
36,064 KB
testcase_29 AC 136 ms
68,964 KB
testcase_30 AC 18 ms
11,620 KB
testcase_31 AC 97 ms
36,064 KB
testcase_32 AC 141 ms
68,960 KB
testcase_33 AC 305 ms
134,624 KB
testcase_34 AC 308 ms
134,624 KB
testcase_35 AC 281 ms
134,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

struct Initializer {
  Initializer() {
    cin.tie(0);
    ios::sync_with_stdio(0);
    cout << fixed << setprecision(15);
  }
} initializer;

class Prime {
private:
  vector<long long> div;
  
public:
  Prime(long long n = 0) {
    for (long long i = 0; i <= n; ++i) div.emplace_back(i);
    for (long long i = 2; i <= n / i; ++i) if (div[i] == i) {
      for (long long j = i * i; j <= n; j += i) div[j] = i;
    }
  }
  
  bool isPrime(long long n) const {
    if (n <= 1) return false;
    if (n < (long long)div.size()) return div[n] == n;
    for (long long i = 2; i <= n / i; ++i) if (n % i == 0) return false;
    return true;
  }
  
  vector<long long> factor(long long n) const {
    vector<long long> res;
    for (long long i = 2; i <= n / i && n >= (long long)div.size(); ++i) {
      while (n % i == 0) {
        res.emplace_back(i);
        n /= i;
      }
    }
    if (n >= max((long long)div.size(), 2ll)) {
      res.emplace_back(n);
    } else {
      while (n > 1) {
        res.emplace_back(div[n]);
        n /= div[n];
      }
    }
    sort(res.begin(), res.end());
    return res;
  }
  
  vector<long long> primeFactor(long long n) const {
    vector<long long> res;
    for (long long i = 2; i <= n / i && n >= (long long)div.size(); ++i) {
      if (n % i) continue;
      res.emplace_back(i);
      while (n % i == 0) n /= i;
    }
    if (n >= max((long long)div.size(), 2ll)) {
      res.emplace_back(n);
    } else {
      while (n > 1) {
        long long d = div[n];
        res.emplace_back(d);
        while (n % d == 0) n /= d;
      }
    }
    sort(res.begin(), res.end());
    return res;
  }

  vector<long long> divisor(long long n) const {
    vector<long long> res;
    for (long long i = 1; i <= n / i; ++i) {
      if (n % i == 0) {
        res.emplace_back(i);
        if (i != n / i) res.emplace_back(n / i);
      }
    }
    sort(res.begin(), res.end());
    return res;
  }
};

int main() {
  int64_t n, l, res = 0;
  cin >> n >> l;
  Prime prime(l + 1);
  for (int i = 2; i <= l; ++i) {
    if (prime.isPrime(i)) res += max(l - i * (n - 1) + 1, (int64_t)0);
  }
  cout << res << endl;
}
0