結果
問題 | No.713 素数の和 |
ユーザー | mame_shibe |
提出日時 | 2019-12-07 20:32:20 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 23 ms / 2,000 ms |
コード長 | 1,493 bytes |
コンパイル時間 | 928 ms |
コンパイル使用メモリ | 105,592 KB |
実行使用メモリ | 25,820 KB |
最終ジャッジ日時 | 2024-06-07 21:02:18 |
合計ジャッジ時間 | 1,718 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 22 ms
23,640 KB |
testcase_01 | AC | 21 ms
25,820 KB |
testcase_02 | AC | 21 ms
23,524 KB |
testcase_03 | AC | 22 ms
23,984 KB |
testcase_04 | AC | 21 ms
23,748 KB |
testcase_05 | AC | 22 ms
23,392 KB |
testcase_06 | AC | 23 ms
23,520 KB |
testcase_07 | AC | 22 ms
23,784 KB |
testcase_08 | AC | 21 ms
23,760 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Text; using System.Linq; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization.Formatters; using static System.Console; using static System.Math; namespace YukiCoder { public class Program { public static void Main(string[] args) { new Program().Solve(); } public void Solve() { int N = int.Parse(Console.ReadLine()); int n = 1000; bool[] primes = SieveOfEratosthenes(n); int sum = 0; for (int i = 0; i <= N; i++) { if (primes[i]) { sum += i; } } WriteLine(sum); } public static bool[] SieveOfEratosthenes(int n) { bool[] isPrime = new bool[n+1]; for (int i = 0; i < n; i++) { isPrime[i] = true; } isPrime[0] = false; isPrime[1] = false; for (int i = 2; i < Math.Sqrt(n); i++) { int j; if (isPrime[i]) { j = i + i; while (j <= n) { isPrime[j] = false; j = j + i; } } } return isPrime; } } }