結果

問題 No.713 素数の和
ユーザー YamaKasaYamaKasa
提出日時 2018-07-14 00:21:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 552 bytes
コンパイル時間 2,608 ms
コンパイル使用メモリ 79,396 KB
実行使用メモリ 41,268 KB
最終ジャッジ日時 2024-10-09 05:50:12
合計ジャッジ時間 3,777 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,064 KB
testcase_01 AC 129 ms
40,976 KB
testcase_02 AC 131 ms
41,208 KB
testcase_03 AC 134 ms
41,200 KB
testcase_04 AC 133 ms
41,020 KB
testcase_05 AC 130 ms
40,988 KB
testcase_06 AC 131 ms
41,268 KB
testcase_07 AC 131 ms
41,144 KB
testcase_08 AC 131 ms
41,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int sum = 0;
		for(int i = 1; i <= N; i++) {
			if(isPrime(i)) {
				sum += i;
			}
		}
		scan.close();
		System.out.println(sum);
	}
 public static boolean isPrime(long n) {
        if(n == 1) {
        	return false;
        }
        for(long i = 2; i <= (int)Math.sqrt(n); i++){
            if(n % i == 0) {
                return false;
            }
        }
        return true;
    }
}
0