結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー BantakoBantako
提出日時 2017-07-27 23:32:54
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 276 ms / 1,000 ms
コード長 399 bytes
コンパイル時間 1,802 ms
コンパイル使用メモリ 156,892 KB
実行使用メモリ 42,752 KB
最終ジャッジ日時 2024-10-10 02:17:20
合計ジャッジ時間 10,864 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 218 ms
42,624 KB
testcase_01 AC 219 ms
42,496 KB
testcase_02 AC 221 ms
42,624 KB
testcase_03 AC 218 ms
42,624 KB
testcase_04 AC 217 ms
42,624 KB
testcase_05 AC 219 ms
42,624 KB
testcase_06 AC 217 ms
42,752 KB
testcase_07 AC 218 ms
42,496 KB
testcase_08 AC 211 ms
42,624 KB
testcase_09 AC 220 ms
42,752 KB
testcase_10 AC 276 ms
42,624 KB
testcase_11 AC 221 ms
42,496 KB
testcase_12 AC 216 ms
42,624 KB
testcase_13 AC 216 ms
42,624 KB
testcase_14 AC 220 ms
42,496 KB
testcase_15 AC 218 ms
42,624 KB
testcase_16 AC 218 ms
42,624 KB
testcase_17 AC 215 ms
42,624 KB
testcase_18 AC 220 ms
42,624 KB
testcase_19 AC 221 ms
42,496 KB
testcase_20 AC 219 ms
42,752 KB
testcase_21 AC 222 ms
42,752 KB
testcase_22 AC 216 ms
42,752 KB
testcase_23 AC 218 ms
42,496 KB
testcase_24 AC 217 ms
42,496 KB
testcase_25 AC 222 ms
42,624 KB
testcase_26 AC 220 ms
42,624 KB
testcase_27 AC 236 ms
42,496 KB
testcase_28 AC 211 ms
42,496 KB
testcase_29 AC 215 ms
42,624 KB
testcase_30 AC 220 ms
42,496 KB
testcase_31 AC 216 ms
42,624 KB
testcase_32 AC 220 ms
42,624 KB
testcase_33 AC 222 ms
42,624 KB
testcase_34 AC 224 ms
42,624 KB
testcase_35 AC 221 ms
42,624 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:3:1: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type]
    3 | main(){
      | ^~~~
main.cpp: In function ‘int main()’:
main.cpp:9:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |     scanf("%d%d",&N,&L);
      |     ~~~~~^~~~~~~~~~~~~~

ソースコード

diff #

#include<bits/stdc++.h>
int prime[10000000];
main(){
    for(int i = 2;i*i <=10000000;i++){
        if(prime[i])continue;
        for(int j = i*2;j < 10000000;j+=i)prime[j]=1;
    }
    int N,L;
    scanf("%d%d",&N,&L);
    long long sum = 0;
    for(int i = 2;i < 10000000;i++){
        if(prime[i])continue;
        if(i*(N-1)>L)break;
        sum += L-i*(N-1)+1;
    }
    printf("%lld\n",sum);
}
0