結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | Himatsubushin |
提出日時 | 2021-01-15 08:59:31 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,345 bytes |
コンパイル時間 | 995 ms |
コンパイル使用メモリ | 111,988 KB |
実行使用メモリ | 30,608 KB |
最終ジャッジ日時 | 2024-05-04 00:42:29 |
合計ジャッジ時間 | 8,640 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
26,848 KB |
testcase_01 | AC | 28 ms
26,980 KB |
testcase_02 | AC | 28 ms
24,832 KB |
testcase_03 | AC | 29 ms
24,692 KB |
testcase_04 | AC | 28 ms
24,696 KB |
testcase_05 | AC | 37 ms
24,684 KB |
testcase_06 | AC | 30 ms
24,816 KB |
testcase_07 | AC | 30 ms
26,976 KB |
testcase_08 | AC | 29 ms
26,856 KB |
testcase_09 | AC | 345 ms
24,816 KB |
testcase_10 | AC | 28 ms
22,832 KB |
testcase_11 | AC | 28 ms
26,724 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; namespace No._07 { class Program { static List<int> prime = new List<int>(); static void Main(string[] args) { int n = int.Parse(Console.ReadLine()); primeCheck(n); if (judgmentCheck(n)) { Console.WriteLine("Win"); } else { Console.WriteLine("Lose"); } } static void primeCheck(int n) { bool[] data = Enumerable.Repeat(true, n + 1).ToArray(); for (int i = 4; i <= n; i += 2) data[i] = false; for (int i = 3; i <= (int)Math.Sqrt((double)n); i += 2) for (int j = 2; i * j <= n; j++) data[i * j] = false; for (int i = n; i >= 2; i--) if (data[i]) prime.Add(i); return; } static bool judgmentCheck(int n) { if (n > 1) { foreach (int a in prime) if (n >= a) if (!judgmentCheck(n - a)) return true; return false; } else return true; } } }