結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー 0w10w1
提出日時 2016-11-27 17:50:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 232 ms / 1,000 ms
コード長 487 bytes
コンパイル時間 1,857 ms
コンパイル使用メモリ 169,784 KB
実行使用メモリ 48,232 KB
最終ジャッジ日時 2024-05-09 12:39:56
合計ジャッジ時間 4,326 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 12 ms
7,660 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 210 ms
45,928 KB
testcase_06 AC 96 ms
25,928 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 13 ms
7,824 KB
testcase_20 AC 36 ms
16,148 KB
testcase_21 AC 16 ms
8,980 KB
testcase_22 AC 14 ms
8,024 KB
testcase_23 AC 24 ms
11,976 KB
testcase_24 AC 38 ms
16,148 KB
testcase_25 AC 67 ms
24,988 KB
testcase_26 AC 73 ms
24,988 KB
testcase_27 AC 9 ms
6,940 KB
testcase_28 AC 26 ms
12,876 KB
testcase_29 AC 68 ms
24,360 KB
testcase_30 AC 11 ms
7,364 KB
testcase_31 AC 50 ms
21,156 KB
testcase_32 AC 77 ms
24,756 KB
testcase_33 AC 228 ms
46,696 KB
testcase_34 AC 232 ms
48,232 KB
testcase_35 AC 196 ms
43,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef long long ll;

signed main(){
  int N, L; cin >> N >> L;
  vector< int > np( L );
  vector< int > pt;
  for( int i = 2; i < L; ++i )
    if( not np[ i ] ){
      pt.emplace_back( i );
      for( int j = i + i; j < L; j += i )
        np[ j ] = 1;
    }
  ll ans = 0;
  for( int i = 0; i < pt.size(); ++i ){
    ll len = 1LL * pt[ i ] * ( N - 1 );
    if( len <= L )
      ans += L - len + 1;
  }
  cout << ans << endl;
  return 0;
}
0