結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー konsin_tokagekonsin_tokage
提出日時 2018-05-30 12:40:38
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 212 ms / 1,000 ms
コード長 306 bytes
コンパイル時間 491 ms
コンパイル使用メモリ 58,968 KB
実行使用メモリ 42,088 KB
最終ジャッジ日時 2024-06-30 08:12:09
合計ジャッジ時間 2,984 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 9 ms
6,912 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 195 ms
40,308 KB
testcase_06 AC 72 ms
23,664 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 10 ms
7,040 KB
testcase_20 AC 37 ms
14,848 KB
testcase_21 AC 12 ms
8,256 KB
testcase_22 AC 11 ms
7,296 KB
testcase_23 AC 21 ms
10,624 KB
testcase_24 AC 32 ms
14,908 KB
testcase_25 AC 67 ms
22,628 KB
testcase_26 AC 68 ms
22,784 KB
testcase_27 AC 8 ms
5,888 KB
testcase_28 AC 23 ms
11,520 KB
testcase_29 AC 70 ms
21,996 KB
testcase_30 AC 9 ms
6,656 KB
testcase_31 AC 54 ms
18,664 KB
testcase_32 AC 77 ms
22,272 KB
testcase_33 AC 212 ms
42,084 KB
testcase_34 AC 207 ms
42,088 KB
testcase_35 AC 183 ms
38,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
#define ll long long int
int main(){
    ll n,l,r=0;
    cin>>n>>l;
    vector<int> s(l,1);
    for(int i=2;i*i<l;++i)if(s[i])for(int j=i+i;j<l;j+=i)s[j]=0;
    for(ll i=2;i<l;++i)if(s[i])r+=max(0LL,l-i*(n-1)+1);
    cout<<r<<endl;
    return 0;
}
0