結果
問題 | No.713 素数の和 |
ユーザー | yutakahan |
提出日時 | 2019-02-07 10:00:58 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 675 bytes |
コンパイル時間 | 1,034 ms |
コンパイル使用メモリ | 107,860 KB |
実行使用メモリ | 26,056 KB |
最終ジャッジ日時 | 2024-06-24 00:10:58 |
合計ジャッジ時間 | 1,579 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | AC | 23 ms
23,648 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.Linq; public class Hello{ public static void Main(){ var N = long.Parse(Console.ReadLine()); var isPrime = new bool[N]; var ans = 0L; isPrime[2] = true; for(var i = 3;i < N;i += 2){ isPrime[i] = true; } for(var i = 3;i * i <= N;i += 2){ if(isPrime[i]){ for(var j = i * i;j <= N;j += i){ isPrime[j] = false; } } } for(var i = 0;i < N;i++){ if(isPrime[i]){ ans += i; } } Console.WriteLine(ans); } }