結果

問題 No.713 素数の和
ユーザー tsunabittsunabit
提出日時 2019-06-25 22:01:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 446 bytes
コンパイル時間 3,329 ms
コンパイル使用メモリ 78,472 KB
実行使用メモリ 41,320 KB
最終ジャッジ日時 2024-06-23 08:56:11
合計ジャッジ時間 5,078 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,024 KB
testcase_01 AC 122 ms
41,308 KB
testcase_02 AC 124 ms
41,320 KB
testcase_03 AC 115 ms
40,584 KB
testcase_04 AC 118 ms
40,316 KB
testcase_05 AC 112 ms
40,452 KB
testcase_06 AC 127 ms
41,308 KB
testcase_07 AC 122 ms
41,100 KB
testcase_08 AC 103 ms
39,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No713 {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int o = 0;
    	for(int i = 1; i <= n; i++) {
    		int yaku = 0;
    		for(int j = 1; j <= i; j++) {
    			if(i % j == 0) {
    				yaku++;
    			}
    		}
    		if(yaku == 2) {
    			o += i;
    		}
    	}
    	System.out.println(o);
    }
}
0