結果

問題 No.713 素数の和
ユーザー shum_opshum_op
提出日時 2018-09-30 16:26:38
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 512 bytes
コンパイル時間 830 ms
コンパイル使用メモリ 30,592 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-12 09:11:10
合計ジャッジ時間 827 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <stdio.h>
#include <math.h>

int p[1001];

int main(){
        int i, j;
        int N;
        int sum = 0;
        p[0] = -1;
        p[1] = -1;
        for(i = 2; i < sqrt(1001); i++){
                if(p[i] == -1) continue;
                for(j = 2; i * j < 1001; j++){
                        p[i * j] = -1;
                }
        }

        scanf("%d", &N);
        for(i = 2; i <= N; i++){
                sum += p[i] == 0 ? i : 0;
        }
        printf("%d\n", sum);
        return 0;

}
0