AOJ本の読書メモ
AOJ
次のAOJの問題へ
前のAOJの問題へ
DPL_5_A: Balls and Boxes 1
ボール | 箱 | 入れ方に制限なし | 箱の中身は1つ以下 | 箱の中身は1つ以上 |
区別できる | 区別できる | 1 | 2 | 3 |
区別できない | 区別できる | 4 | 5 | 6 |
区別できる | 区別できない | 7 | 8 | 9 |
区別できない | 区別できない | 10 | 11 | 12 |
C#のソース
using System;
using System.Collections.Generic;
using System.Linq;
class Program
{
static string InputPattern = "InputX";
static List<string> GetInputList()
{
var WillReturn = new List<string>();
if (InputPattern == "Input1") {
WillReturn.Add("2 3");
//9
}
else if (InputPattern == "Input2") {
WillReturn.Add("10 5");
//9765625
}
else if (InputPattern == "Input3") {
WillReturn.Add("100 100");
//424090053
}
else {
string wkStr;
while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
}
return WillReturn;
}
const long Hou = 1000000007;
static void Main()
{
List<string> InputList = GetInputList();
long[] wkArr = InputList[0].Split(' ').Select(pX => long.Parse(pX)).ToArray();
long N = wkArr[0];
long K = wkArr[1];
long Answer = K;
for (long I = 2; I <= N; I++) {
Answer *= K;
Answer %= Hou;
}
Console.WriteLine(Answer);
}
}
解説
ボール1個につき、箱の数だけ設置箇所があるので
ボールをN、箱をKとして、
KのN乗が解になります。