AtCoderのABC
次のABCの問題へ
前のABCの問題へ
ABC175-C Walking Takahashi
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("6 2 4");
//2
}
else if (InputPattern == "Input2") {
WillReturn.Add("7 4 3");
//1
}
else if (InputPattern == "Input3") {
WillReturn.Add("10 1 2");
//8
}
else if (InputPattern == "Input4") {
WillReturn.Add("1000000000000000 1000000000000000 1000000000000000");
//1000000000000000
}
else {
string wkStr;
while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
}
return WillReturn;
}
static void Main()
{
checked {
List<string> InputList = GetInputList();
long[] wkArr = InputList[0].Split(' ').Select(pX => long.Parse(pX)).ToArray();
long X = wkArr[0];
long K = wkArr[1];
long D = wkArr[2];
// 負の座標の場合は、正の座標に変更
X = Math.Abs(X);
// X/DをwkCntとおく
long wkCnt = X / D;
// 場合分けして解く。
// 場合1 wkCnt >= K
if (wkCnt >= K) {
Console.WriteLine(X - D * K);
}
else { // 場合2 wkCnt < K
long CurrPos = X % D;
long RestCnt = K - wkCnt;
if (RestCnt % 2 == 1) {
CurrPos -= D;
}
Console.WriteLine(Math.Abs(CurrPos));
}
}
}
}
解説
対称性から、Xが負の場合は、正に変更してます。
そして、X/DとKの比較結果で場合分けしてます。