結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー konsin_tokagekonsin_tokage
提出日時 2018-05-30 12:33:44
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 300 bytes
コンパイル時間 542 ms
コンパイル使用メモリ 58,940 KB
実行使用メモリ 42,240 KB
最終ジャッジ日時 2024-06-30 08:11:51
合計ジャッジ時間 3,002 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 11 ms
6,912 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 WA -
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 11 ms
7,040 KB
testcase_20 AC 29 ms
14,748 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 70 ms
22,700 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 68 ms
22,212 KB
testcase_33 AC 199 ms
42,240 KB
testcase_34 AC 199 ms
42,112 KB
testcase_35 AC 168 ms
38,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
int main(){
    int l,n;
    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;
    long long int r=0;
    for(int i=2;i<l;++i)if(s[i])r+=max(0,l-i*(n-1)+1);
    cout<<r<<endl;
    return 0;
}
0