結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | 14番 |
提出日時 | 2016-03-29 01:20:25 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 155 ms / 5,000 ms |
コード長 | 3,074 bytes |
コンパイル時間 | 836 ms |
コンパイル使用メモリ | 107,264 KB |
実行使用メモリ | 18,048 KB |
最終ジャッジ日時 | 2024-10-01 15:42:26 |
合計ジャッジ時間 | 2,699 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 22 ms
17,536 KB |
testcase_01 | AC | 22 ms
17,792 KB |
testcase_02 | AC | 152 ms
17,920 KB |
testcase_03 | AC | 31 ms
18,048 KB |
testcase_04 | AC | 25 ms
17,920 KB |
testcase_05 | AC | 24 ms
17,920 KB |
testcase_06 | AC | 58 ms
17,736 KB |
testcase_07 | AC | 46 ms
17,984 KB |
testcase_08 | AC | 33 ms
17,784 KB |
testcase_09 | AC | 79 ms
17,864 KB |
testcase_10 | AC | 23 ms
18,048 KB |
testcase_11 | AC | 47 ms
17,988 KB |
testcase_12 | AC | 115 ms
17,856 KB |
testcase_13 | AC | 121 ms
17,728 KB |
testcase_14 | AC | 155 ms
17,920 KB |
testcase_15 | AC | 148 ms
17,984 KB |
testcase_16 | AC | 136 ms
17,792 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.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; } } } for(int i=4; i<=max; i++) { if(!CanWin.ContainsKey(i)) { // Console.WriteLine(i + ":" + this.PrimeList[this.NearPrimeIndex[i]]); bool hasWin = false; for(int j=0; j<=this.NearPrimeIndex[i]; j++) { int prime = this.PrimeList[j]; if(i - prime >= 2 && (!CanWin[i-prime])) { hasWin = true; } } CanWin.Add(i, hasWin); } } } private Dictionary<int, bool> CanWin = new Dictionary<int, bool>(); private List<int> PrimeList = new List<int>(); private int[] NearPrimeIndex; private void SetPrimeList(int max) { bool[] tempList = new bool[max+1]; this.NearPrimeIndex = new int[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; } } this.NearPrimeIndex[i] = this.PrimeList.Count - 1; } } 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 = @" 10000 "; }