結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 185 ms
81,352 KB
testcase_01 AC 187 ms
81,248 KB
testcase_02 AC 208 ms
81,324 KB
testcase_03 AC 214 ms
81,220 KB
testcase_04 AC 194 ms
81,316 KB
testcase_05 AC 198 ms
81,372 KB
testcase_06 AC 195 ms
81,200 KB
testcase_07 AC 192 ms
81,384 KB
testcase_08 AC 196 ms
81,348 KB
testcase_09 AC 192 ms
81,408 KB
testcase_10 AC 204 ms
81,316 KB
testcase_11 AC 189 ms
81,300 KB
testcase_12 AC 191 ms
81,420 KB
testcase_13 AC 183 ms
81,412 KB
testcase_14 AC 187 ms
81,272 KB
testcase_15 AC 193 ms
81,164 KB
testcase_16 AC 200 ms
81,176 KB
testcase_17 AC 210 ms
81,376 KB
testcase_18 AC 207 ms
81,336 KB
testcase_19 AC 190 ms
81,340 KB
testcase_20 AC 210 ms
81,400 KB
testcase_21 AC 206 ms
81,356 KB
testcase_22 AC 210 ms
81,336 KB
testcase_23 AC 203 ms
81,300 KB
testcase_24 AC 211 ms
81,404 KB
testcase_25 AC 207 ms
81,356 KB
testcase_26 AC 205 ms
81,304 KB
testcase_27 AC 192 ms
81,312 KB
testcase_28 AC 211 ms
81,320 KB
testcase_29 AC 190 ms
81,304 KB
testcase_30 AC 193 ms
81,288 KB
testcase_31 AC 211 ms
81,292 KB
testcase_32 AC 204 ms
81,308 KB
testcase_33 AC 209 ms
81,324 KB
testcase_34 AC 197 ms
81,520 KB
testcase_35 AC 194 ms
81,352 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