結果

問題 No.588 空白と回文
ユーザー Charlotte8687Charlotte8687
提出日時 2017-11-14 13:01:59
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 978 bytes
コンパイル時間 839 ms
コンパイル使用メモリ 108,172 KB
実行使用メモリ 26,056 KB
最終ジャッジ日時 2024-05-03 21:27:37
合計ジャッジ時間 2,167 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
23,384 KB
testcase_01 AC 21 ms
23,856 KB
testcase_02 AC 21 ms
25,676 KB
testcase_03 WA -
testcase_04 AC 21 ms
21,808 KB
testcase_05 AC 21 ms
25,804 KB
testcase_06 AC 21 ms
23,628 KB
testcase_07 AC 21 ms
25,684 KB
testcase_08 AC 21 ms
25,452 KB
testcase_09 AC 22 ms
25,548 KB
testcase_10 AC 22 ms
23,760 KB
testcase_11 WA -
testcase_12 AC 22 ms
23,520 KB
testcase_13 WA -
testcase_14 AC 21 ms
23,372 KB
testcase_15 WA -
testcase_16 AC 20 ms
21,680 KB
testcase_17 AC 23 ms
23,724 KB
testcase_18 AC 20 ms
23,768 KB
testcase_19 AC 20 ms
23,372 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 SpaceEscape
{
    class Program
    {
        static void Main(string[] args)
        {
            string target = Console.ReadLine();
            Console.WriteLine(checkAnagram(target));
        }

        static int checkAnagram(string str)
        {
            int max_count = 0; // max count for anagram word
            for (int i = 0; i < str.Length; i++)
            {
                int count = 0; // count for anagram word
                for (int j = 1; j < str.Length; j++)
                {
                    if (i + j >= str.Length || i - j < 0)
                        break;

                    if (str[i + j] == str[i - j])
                        count++;
                }

                if (max_count < count)
                    max_count = count;


            }

            return max_count * 2 + 1;

        }
    }
}

0