結果
問題 | No.36 素数が嫌い! |
ユーザー | suzu |
提出日時 | 2023-04-28 11:33:40 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 852 bytes |
コンパイル時間 | 2,934 ms |
コンパイル使用メモリ | 110,016 KB |
実行使用メモリ | 832,192 KB |
最終ジャッジ日時 | 2024-11-17 12:41:00 |
合計ジャッジ時間 | 15,208 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | AC | 25 ms
25,424 KB |
testcase_03 | AC | 24 ms
25,412 KB |
testcase_04 | AC | 24 ms
25,532 KB |
testcase_05 | TLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | AC | 158 ms
93,544 KB |
testcase_09 | MLE | - |
testcase_10 | AC | 1,497 ms
493,988 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 24 ms
25,416 KB |
testcase_16 | AC | 24 ms
23,520 KB |
testcase_17 | AC | 24 ms
23,396 KB |
testcase_18 | AC | 44 ms
41,300 KB |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | MLE | - |
コンパイルメッセージ
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; using System.Collections.Generic; namespace yukicoder { class Program { static void Main(string[] args) { long N = long.Parse(Console.ReadLine()); var sieve = new bool[N + 1];//falseは素数。trueは非素数。 sieve[0] = false; sieve[1] = false; string ans = "NO"; for(long i = 2;i < (N / 2) + 1;i++) { if(!sieve[i])//素数の時実行。ふるいにかける。 { for(long m = i + i;m < N + 1;m += i) { sieve[m] = true; } } if(sieve[i] && i != 1 && i != N)//素数,1,使う数自身 以外かどうか { if(N % i == 0) { ans = "YES"; break; } } } Console.WriteLine(ans); } } }