結果

問題 No.713 素数の和
ユーザー nasu_ysmrnasu_ysmr
提出日時 2018-10-30 14:25:46
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 511 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 29,824 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-30 00:36:05
合計ジャッジ時間 717 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int primenumber(int M)
{
    int i=2;
    if(M==2||M==3) return 1;
    while(1){
        if( M%i==0 || M==1 ){
            return 0;
            break;
        }
        i=i+1;
        if(M < i*i){
            return 1;
            break;
        }
    }
    return 0;
}

int main(){
    int N;
    int M;
    int sum=0;
    scanf("%d", &N);
    for(M=1; M<=N; M++){
        if(primenumber(M)==1){
            sum += M;
        }
    }
    printf("%d", sum);
}
0