結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | 14番 |
提出日時 | 2016-03-29 00:02:43 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,392 bytes |
コンパイル時間 | 919 ms |
コンパイル使用メモリ | 106,496 KB |
実行使用メモリ | 17,920 KB |
最終ジャッジ日時 | 2024-10-02 06:54:28 |
合計ジャッジ時間 | 2,146 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
17,792 KB |
testcase_01 | AC | 28 ms
17,920 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 27 ms
17,536 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 29 ms
17,664 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 28 ms
17,792 KB |
testcase_14 | AC | 28 ms
17,664 KB |
testcase_15 | AC | 28 ms
17,536 KB |
testcase_16 | WA | - |
コンパイルメッセージ
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.Text; public class Program { public void Proc(){ Reader.IsDebug = false; int max = int.Parse(Reader.ReadLine()); this.SetPrimeList(max); this.SetCanWinDic(max); bool ans = false; if(CanWin.ContainsKey(max)) { ans = this.CanWin[max]; } Console.WriteLine(ans?"Win":"Lose"); } private void SetCanWinDic(int max) { this.CanWin.Add(2, false); if(max >= 3) { this.CanWin.Add(3, false); } List<int> keyList = new List<int>(); keyList.AddRange(CanWin.Keys); foreach (int key in keyList) { foreach (int prime in this.PrimeList) { int newKey = key + prime; if(newKey <= max) { if(!CanWin.ContainsKey(newKey)) { CanWin.Add(newKey, true); } } else { break; } } } } private Dictionary<int, bool> CanWin = new Dictionary<int, bool>(); private List<int> PrimeList = new List<int>(); private void SetPrimeList(int max) { bool[] tempList = new bool[max+1]; for(int i=2; i<=max; i++) { if(!tempList[i]) { PrimeList.Add(i); for(int j=1; j<=max / i; j++) { tempList[j*i] = true; } } } } public static void Main(string[] args) { Program prg = new Program(); prg.Proc(); } } class Reader { public static bool IsDebug = true; private static System.IO.StringReader sr; public static string ReadLine() { if(IsDebug) { if(sr == null) { sr = new System.IO.StringReader(initStr.Trim()); } return sr.ReadLine(); } else { return Console.ReadLine(); } } public static int[] GetInt(char delimiter = ' ') { string[] inpt = ReadLine().Split(delimiter); int[] ret = new int[inpt.Length]; for(int i=0; i<inpt.Length; i++) { ret[i] = int.Parse(inpt[i]); } return ret; } private static string initStr = @" 12 "; }