結果
問題 | No.7 プライムナンバーゲーム |
ユーザー |
|
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 17 |
コンパイルメッセージ
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; } } }