結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 15 ms
7,596 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 349 ms
44,772 KB
testcase_06 AC 140 ms
25,924 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 3 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 14 ms
7,808 KB
testcase_20 AC 53 ms
16,148 KB
testcase_21 AC 20 ms
8,960 KB
testcase_22 AC 16 ms
8,024 KB
testcase_23 AC 31 ms
11,976 KB
testcase_24 AC 52 ms
16,044 KB
testcase_25 AC 120 ms
24,984 KB
testcase_26 AC 123 ms
24,984 KB
testcase_27 AC 10 ms
6,400 KB
testcase_28 AC 36 ms
12,872 KB
testcase_29 AC 129 ms
24,360 KB
testcase_30 AC 13 ms
7,244 KB
testcase_31 AC 84 ms
21,028 KB
testcase_32 AC 128 ms
24,632 KB
testcase_33 AC 372 ms
46,564 KB
testcase_34 AC 371 ms
46,564 KB
testcase_35 AC 325 ms
42,824 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