結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー Fujisaki_prprFujisaki_prpr
提出日時 2016-08-29 15:45:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 302 ms / 1,000 ms
コード長 1,490 bytes
コンパイル時間 1,754 ms
コンパイル使用メモリ 167,892 KB
実行使用メモリ 81,408 KB
最終ジャッジ日時 2024-05-09 12:13:51
合計ジャッジ時間 13,417 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 294 ms
81,408 KB
testcase_01 AC 292 ms
81,212 KB
testcase_02 AC 292 ms
81,408 KB
testcase_03 AC 292 ms
81,392 KB
testcase_04 AC 293 ms
81,240 KB
testcase_05 AC 288 ms
81,400 KB
testcase_06 AC 285 ms
81,372 KB
testcase_07 AC 286 ms
81,324 KB
testcase_08 AC 292 ms
81,408 KB
testcase_09 AC 288 ms
81,408 KB
testcase_10 AC 298 ms
81,280 KB
testcase_11 AC 294 ms
81,384 KB
testcase_12 AC 302 ms
81,388 KB
testcase_13 AC 292 ms
81,408 KB
testcase_14 AC 291 ms
81,364 KB
testcase_15 AC 289 ms
81,180 KB
testcase_16 AC 295 ms
81,344 KB
testcase_17 AC 300 ms
81,256 KB
testcase_18 AC 291 ms
81,376 KB
testcase_19 AC 291 ms
81,408 KB
testcase_20 AC 299 ms
81,408 KB
testcase_21 AC 291 ms
81,324 KB
testcase_22 AC 302 ms
81,372 KB
testcase_23 AC 298 ms
81,280 KB
testcase_24 AC 297 ms
81,332 KB
testcase_25 AC 291 ms
81,280 KB
testcase_26 AC 296 ms
81,248 KB
testcase_27 AC 285 ms
81,404 KB
testcase_28 AC 296 ms
81,308 KB
testcase_29 AC 289 ms
81,372 KB
testcase_30 AC 296 ms
81,368 KB
testcase_31 AC 288 ms
81,392 KB
testcase_32 AC 283 ms
81,292 KB
testcase_33 AC 285 ms
81,408 KB
testcase_34 AC 295 ms
81,352 KB
testcase_35 AC 285 ms
81,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std ;

#define pb(n) push_back(n)
#define fi first
#define se second
#define all(r) begin(r),end(r)
#define vmax(ary) *max_element(all(ary))
#define vmin(ary) *min_element(all(ary))
#define debug(x) cout<<#x<<": "<<x<<endl
#define fcout(n) cout<<fixed<<setprecision((n))
#define scout(n) cout<<setw(n)
#define vary(type,name,size,init) vector< type> name(size,init)
#define vvl(v,w,h,init) vector<vector<ll>> v(w,vector<ll>(h,init))
#define mp(a,b) make_pair(a,b)

#define rep(i,n) for(int i = 0; i < (int)(n);++i)
#define REP(i,a,b) for(int i = (a);i < (int)(b);++i)
#define repi(it,array) for(auto it = array.begin(),end = array.end(); it != end;++it)
#define repa(n,array) for(auto &n :(array))

using ll = long long;
using pii = pair<int,int> ;
using pll = pair<ll,ll> ;

const ll PrimeMax = 10000001;
int is_prime[PrimeMax],S = 0;
vector<ll> p(PrimeMax/2);
void Eratosthenes(){
  for(int i = 0; i < PrimeMax; i++){
    is_prime[i] = 1;
  }
  is_prime[0] = 0;
  is_prime[1] = 0;
  for(int i = 2; i < PrimeMax ; i++){
    if(is_prime[i]){
      p[S] = i;
      ++S;
      for(int j = 0; i * (j + 2) < PrimeMax; j++){
        is_prime[i *(j + 2)] = 0;
      }
    }
  }
}

int main(){
  cin.tie(0);
  ios::sync_with_stdio(false);
  Eratosthenes();
  ll n,l;
  cin >> n >> l;
  ll ans = 0;
  rep(i,S){
    ll s = l - (n-1) * p[i] + 1 ;
    if(s > 0){
      ans += s;
    }
    if(p[i] > l || s < 0) break;
  }
  cout << ans << endl;
  return 0;
}

0