結果

問題 No.713 素数の和
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-10-09 22:54:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 635 bytes
コンパイル時間 3,529 ms
コンパイル使用メモリ 74,168 KB
実行使用メモリ 41,464 KB
最終ジャッジ日時 2024-10-12 17:05:34
合計ジャッジ時間 5,381 ms
ジャッジサーバーID
(参考情報)
judge5 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
41,464 KB
testcase_01 AC 99 ms
41,048 KB
testcase_02 AC 108 ms
41,148 KB
testcase_03 AC 112 ms
39,800 KB
testcase_04 AC 112 ms
40,880 KB
testcase_05 AC 113 ms
41,328 KB
testcase_06 AC 124 ms
41,056 KB
testcase_07 AC 122 ms
41,268 KB
testcase_08 AC 115 ms
41,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();

        if(n == 1) {
            System.out.println(0);
            return;
        }
        int sum = 0;
        for(int i=2; i<=n; i++)
            sum += primeNum(i);

        System.out.println(sum);
    }

    public static int primeNum(int x) {
        boolean flag = true;
        for(int i=2; i<=x-1; i++) {
            if(x % i == 0) {
                flag = false;
                break;
            }
        }
        if(flag) return x;
        else return 0;
    }
}
0