結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | Himatsubushin |
提出日時 | 2021-01-15 09:19:46 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 37 ms / 5,000 ms |
コード長 | 1,495 bytes |
コンパイル時間 | 1,256 ms |
コンパイル使用メモリ | 113,864 KB |
実行使用メモリ | 18,816 KB |
最終ジャッジ日時 | 2024-10-01 16:41:59 |
合計ジャッジ時間 | 2,384 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
18,432 KB |
testcase_01 | AC | 26 ms
18,688 KB |
testcase_02 | AC | 25 ms
18,560 KB |
testcase_03 | AC | 27 ms
18,432 KB |
testcase_04 | AC | 26 ms
18,560 KB |
testcase_05 | AC | 27 ms
18,560 KB |
testcase_06 | AC | 25 ms
18,560 KB |
testcase_07 | AC | 27 ms
18,560 KB |
testcase_08 | AC | 27 ms
18,816 KB |
testcase_09 | AC | 28 ms
18,432 KB |
testcase_10 | AC | 26 ms
18,432 KB |
testcase_11 | AC | 27 ms
18,560 KB |
testcase_12 | AC | 37 ms
18,688 KB |
testcase_13 | AC | 27 ms
18,816 KB |
testcase_14 | AC | 32 ms
18,688 KB |
testcase_15 | AC | 31 ms
18,816 KB |
testcase_16 | AC | 37 ms
18,304 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.Collections.Generic; using System.Linq; namespace No._07 { class Program { static List<int> prime = new List<int>(); static bool[,] memo; static void Main(string[] args) { int n = int.Parse(Console.ReadLine()); memo = new bool[n + 1, 2]; memo[0, 0] = memo[0, 1] = true; memo[1, 0] = memo[1, 1] = true; 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 (memo[n, 0]) return memo[n, 1]; memo[n, 0] = true; foreach (int a in prime) if (n >= a) if (!judgmentCheck(n - a)) return memo[n, 1] = true; return false; } } }