結果

問題 No.273 回文分解
ユーザー Himatsubushin
提出日時 2015-12-26 15:04:17
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,198 bytes
コンパイル時間 867 ms
コンパイル使用メモリ 103,936 KB
実行使用メモリ 17,792 KB
最終ジャッジ日時 2024-12-23 13:13:12
合計ジャッジ時間 2,817 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 32
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace No273
{
    class Program
    {
        static void Main(string[] args)
        {
            string sentence;
            int maxLength = 0;

            Console.WriteLine("回文判定");
            Console.Write(" 単語 = ");
            sentence=Console.ReadLine();

            for (int i = 0; i < sentence.Length; i++)
            {
                int num;
                string temp = sentence.Substring(i);
                num = SearchPalindrome(temp);
                if (maxLength < num)
                    maxLength = num;
            }

            Console.WriteLine(" 単語に含まれる回文の最大値 = {0}", maxLength);
        }

        static int SearchPalindrome(string sentence)
        {
            if (sentence.Length <= 1)
                return sentence.Length;

            if (sentence[0] == sentence[sentence.Length - 1])
                return SearchPalindrome(sentence.Remove(sentence.Length - 1).Substring(1)) + 2;
            else
                return SearchPalindrome(sentence.Remove(sentence.Length - 1));
        }
    }
}
0