結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー rapurasurapurasu
提出日時 2016-08-05 22:52:49
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 79 ms / 1,000 ms
コード長 733 bytes
コンパイル時間 2,083 ms
コンパイル使用メモリ 157,420 KB
実行使用メモリ 13,104 KB
最終ジャッジ日時 2024-12-15 21:21:12
合計ジャッジ時間 3,219 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 7 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 78 ms
12,780 KB
testcase_06 AC 38 ms
8,928 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 1 ms
6,816 KB
testcase_10 AC 1 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 1 ms
6,816 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 7 ms
6,816 KB
testcase_20 AC 21 ms
6,820 KB
testcase_21 AC 10 ms
6,820 KB
testcase_22 AC 8 ms
6,816 KB
testcase_23 AC 14 ms
6,816 KB
testcase_24 AC 22 ms
6,820 KB
testcase_25 AC 37 ms
8,448 KB
testcase_26 AC 37 ms
9,144 KB
testcase_27 AC 5 ms
6,816 KB
testcase_28 AC 16 ms
6,816 KB
testcase_29 AC 36 ms
9,864 KB
testcase_30 AC 6 ms
6,820 KB
testcase_31 AC 30 ms
8,900 KB
testcase_32 AC 36 ms
9,940 KB
testcase_33 AC 79 ms
13,104 KB
testcase_34 AC 79 ms
13,048 KB
testcase_35 AC 70 ms
12,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define FOR(i,a,b) for (int i=(a);i<(b);i++)
#define RFOR(i,a,b) for (int i=(b)-1;i>=(a);i--)
#define REP(i,n) for (int i=0;i<(n);i++)
#define RREP(i,n) for (int i=(n)-1;i>=0;i--)
bool is_prime[10000001];

int main(){
        long long N;
        long long L;
        long long ans=0;
        cin>>N>>L;
        REP(i,L+1){
          is_prime[i]=true;
        }
        for(int i=2;i<=L;i++){
            if(is_prime[i]){
               long long a=L-(N-1)*i;
               if(a>=0){
                  ans+=a+1;
               }
               for(int j=2*i;j<=L;j+=i){
                   is_prime[j]=false;
               }
            }
        }
        cout<<ans<<endl;
	return(0);
}
0