結果
問題 | No.129 お年玉(2) |
ユーザー | 明智重蔵 |
提出日時 | 2015-07-26 13:51:06 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,596 bytes |
コンパイル時間 | 1,157 ms |
コンパイル使用メモリ | 108,160 KB |
実行使用メモリ | 18,376 KB |
最終ジャッジ日時 | 2024-07-08 14:06:17 |
合計ジャッジ時間 | 5,697 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 29 ms
18,048 KB |
testcase_02 | AC | 28 ms
17,792 KB |
testcase_03 | AC | 30 ms
17,792 KB |
testcase_04 | AC | 30 ms
17,536 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 26 ms
17,792 KB |
testcase_30 | AC | 26 ms
17,664 KB |
testcase_31 | AC | 25 ms
17,408 KB |
testcase_32 | WA | - |
testcase_33 | AC | 26 ms
17,408 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | 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; class Program { static string InputPattern = "Input4"; static List<string> GetInputList() { var WillReturn = new List<string>(); if (InputPattern == "Input1") { WillReturn.Add("10000"); WillReturn.Add("5"); } else if (InputPattern == "Input2") { WillReturn.Add("24500"); WillReturn.Add("9"); } else if (InputPattern == "Input3") { WillReturn.Add("1000"); WillReturn.Add("6"); } else { string wkStr; while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr); } return WillReturn; } static void Main() { Eratosthenes(); List<string> InputList = GetInputList(); ulong N = ulong.Parse(InputList[0]); int M = int.Parse(InputList[1]); //余った金額 int RestVal = (int)(N % (1000 * (ulong)M)); Console.WriteLine(DeriveCombiCnt(M, RestVal / 1000)); } //Aつの袋からBつの袋を選ぶ組み合わせの数を求める static ulong DeriveCombiCnt(int pA, int pB) { if (pA == 0) return 1; pB = Math.Min(pB, pA - pB); var ProdList = new List<int>(); var DeviList = new List<int>(); for (int I = pA; I >= pA - pB + 1; I--) { ProdList.Add(I); } for (int I = 1; I <= pB; I++) { DeviList.AddRange(DeriveSoinsuuArr(I)); } //分母を全てはらってから、総積を1000000000で割った余りを求める for (int I = DeviList.Count - 1; 0 <= I; I--) { for (int J = 0; J <= ProdList.Count - 1; J++) { if (ProdList[J] % DeviList[I] == 0) { ProdList[J] /= DeviList[I]; DeviList.RemoveAt(I); break; } } } ulong WillReturn = 1; ProdList.ForEach(X => WillReturn = (WillReturn * (ulong)X) % 1000000000); return WillReturn; } const int Jyougen = 10000; static int[] SosuuArr; //エラトステネスの篩 static void Eratosthenes() { var CheckArr = new bool[Jyougen + 1]; for (int I = 2; I <= CheckArr.GetUpperBound(0); I++) { CheckArr[I] = true; } for (int I = 2; I <= CheckArr.GetUpperBound(0); I++) { if (I != 2 && I % 2 == 0) continue; if (CheckArr[I]) { for (int J = I * 2; J <= CheckArr.GetUpperBound(0); J += I) { CheckArr[J] = false; } } } var SosuuList = new List<int>(); for (int I = 2; I <= CheckArr.GetUpperBound(0); I++) if (CheckArr[I]) SosuuList.Add(I); SosuuArr = SosuuList.ToArray(); } //素因数分解した因数のリストを返す static int[] DeriveSoinsuuArr(int pTarget) { if (Array.BinarySearch<int>(SosuuArr, pTarget) >= 0) { return new int[] { pTarget }; } var SoinsuuList = new List<int>(); for (int I = 0; I <= SosuuArr.GetUpperBound(0); I++) { bool FirstFlag = true; while (pTarget % SosuuArr[I] == 0) { if (FirstFlag) { FirstFlag = false; SoinsuuList.Add(SosuuArr[I]); } pTarget /= SosuuArr[I]; } if (pTarget == 1) break; } return SoinsuuList.ToArray(); } }