トップページに戻る    次の競技プログラミングの問題へ    前の競技プログラミングの問題へ

ABC-051-A Haiku

■■■問題■■■

イルカは、新年に長さ19の文字列sを受け取りました。
文字列sの形式は [英小文字5文字],[英小文字7文字],[英小文字5文字] で表されます。

イルカは、カンマで区切られた文字列sを、スペースで区切られた文字列に変換したいと思っています。
イルカの代わりに、この処理を行うプログラムを作ってください。

■■■入力■■■

s

●sの長さは19である。
●sの6文字目と14文字目は,である。
●それら以外のsの文字は英小文字である。

■■■出力■■■

処理した後の文字列を出力せよ。


C#のソース

using System;
using System.Collections.Generic;

class Program
{
    static string InputPattern = "Input1";

    static List<string> GetInputList()
    {
        var WillReturn = new List<string>();

        if (InputPattern == "Input1") {
            WillReturn.Add("happy,newyear,enjoy");
            //happy newyear enjoy
            //happy,newyear,enjoyに含まれるカンマをスペースで置き換えて、
            //happy newyear enjoyを出力します。
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("haiku,atcoder,tasks");
            //haiku atcoder tasks
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("abcde,fghihgf,edcba");
            //abcde fghihgf edcba
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    static void Main()
    {
        List<string> InputList = GetInputList();
        string S = InputList[0];

        Console.WriteLine(S.Replace(',', ' '));
    }
}


解説

カンマを半角空白にReplaceしてます。