結果
問題 | No.2 素因数ゲーム |
ユーザー | 14番 |
提出日時 | 2016-03-30 03:39:02 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 27 ms / 5,000 ms |
コード長 | 3,676 bytes |
コンパイル時間 | 2,709 ms |
コンパイル使用メモリ | 114,308 KB |
実行使用メモリ | 18,628 KB |
最終ジャッジ日時 | 2024-06-08 00:25:05 |
合計ジャッジ時間 | 4,351 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
18,176 KB |
testcase_01 | AC | 25 ms
18,304 KB |
testcase_02 | AC | 23 ms
18,048 KB |
testcase_03 | AC | 23 ms
17,792 KB |
testcase_04 | AC | 24 ms
18,048 KB |
testcase_05 | AC | 26 ms
18,012 KB |
testcase_06 | AC | 26 ms
18,176 KB |
testcase_07 | AC | 26 ms
18,048 KB |
testcase_08 | AC | 24 ms
18,176 KB |
testcase_09 | AC | 25 ms
18,252 KB |
testcase_10 | AC | 26 ms
18,176 KB |
testcase_11 | AC | 26 ms
17,904 KB |
testcase_12 | AC | 27 ms
18,028 KB |
testcase_13 | AC | 27 ms
18,628 KB |
testcase_14 | AC | 25 ms
18,176 KB |
testcase_15 | AC | 25 ms
17,920 KB |
testcase_16 | AC | 25 ms
17,792 KB |
testcase_17 | AC | 26 ms
18,176 KB |
testcase_18 | AC | 26 ms
18,048 KB |
testcase_19 | AC | 25 ms
18,048 KB |
testcase_20 | AC | 24 ms
17,920 KB |
testcase_21 | AC | 24 ms
18,176 KB |
testcase_22 | AC | 24 ms
18,176 KB |
testcase_23 | AC | 25 ms
18,048 KB |
testcase_24 | AC | 25 ms
18,048 KB |
testcase_25 | AC | 23 ms
18,048 KB |
testcase_26 | AC | 25 ms
17,920 KB |
testcase_27 | AC | 24 ms
18,168 KB |
testcase_28 | AC | 24 ms
18,176 KB |
testcase_29 | AC | 24 ms
18,048 KB |
testcase_30 | AC | 23 ms
18,176 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 baseNum = int.Parse(Reader.ReadLine()); this.canWinDic = new Nullable<bool>[baseNum + 1]; Soinsu = this.GetSoinsu(baseNum); bool ans = this.GetCanWin(baseNum, this.Soinsu); Console.WriteLine(ans?"Alice":"Bob"); } public bool GetCanWin(int num, Dictionary<int,int> ele) { if(this.canWinDic[num] != null) { return this.canWinDic[num].Value; } bool onlyWin = true; foreach (int key in ele.Keys) { if(ele[key] > 0) { for(int i=1; i<=ele[key]; i++) { int tmp = (int)Math.Pow(key, i); Dictionary<int, int> subDic = new Dictionary<int, int>(); foreach (int k in ele.Keys) { subDic.Add(k, ele[k]); } subDic[key]-=i; if(subDic[key] <=0) { subDic.Remove(key); } if(this.GetCanWin(num / tmp, subDic)) { } else { onlyWin = false; } } } } if(onlyWin) { this.canWinDic[num] = false; } else { this.canWinDic[num] = true; } return this.canWinDic[num].Value; } private Dictionary<int, int> Soinsu; private Nullable<bool>[] canWinDic; private void SetBaseDic() { this.canWinDic[1] = false; foreach (int key in this.Soinsu.Keys) { for(int i=1; i<=this.Soinsu[key]; i++) { int mul = (int)Math.Pow(key, i); this.canWinDic[mul] = true; } } } private Dictionary<int, int> GetSoinsu(int src) { Dictionary<int, int> ret = new Dictionary<int, int>(); int num = src; while (num > 1) { bool isBreak = false; for(int i=2; i<=Math.Sqrt(num); i++) { if(num % i == 0) { isBreak = true; if(ret.ContainsKey(i)) { ret[i]++; } else { ret.Add(i, 1); } num = num / i; break; } } if(isBreak == false) { break; } } if(num > 1) { if(ret.ContainsKey(num)) { ret[num]++; } else { ret.Add(num, 1); } } return ret; } 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 = @" 24 "; }