AtCoderのABC
次のABCの問題へ
前のABCの問題へ
ABC237-C kasaka
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("kasaka");
//Yes
}
else if (InputPattern == "Input2") {
WillReturn.Add("atcoder");
//No
}
else if (InputPattern == "Input3") {
WillReturn.Add("php");
//Yes
}
else {
string wkStr;
while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
}
return WillReturn;
}
static void Main()
{
List<string> InputList = GetInputList();
string S = InputList[0];
int HeadPos = 0;
int TailPos = S.Length - 1;
bool CanAddA = true;
while (HeadPos < TailPos) {
if (S[HeadPos] == S[TailPos]) {
if (S[HeadPos] != 'a') {
CanAddA = false;
}
HeadPos++;
TailPos--;
}
else {
if (CanAddA && S[TailPos] == 'a') {
TailPos--;
}
else {
Console.WriteLine("No");
return;
}
}
}
Console.WriteLine("Yes");
}
}
解説
先頭と末尾から、ポインタを移動させてます。
先頭と末尾が一致して、aの場合
先頭と末尾が一致して、a以外の場合
先頭と末尾が不一致の場合で
処理を分けてます。