結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
23,768 KB
testcase_01 AC 21 ms
23,260 KB
testcase_02 AC 21 ms
23,264 KB
testcase_03 AC 26 ms
25,556 KB
testcase_04 AC 21 ms
23,512 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 21 ms
23,596 KB
testcase_08 AC 20 ms
23,388 KB
testcase_09 AC 20 ms
23,636 KB
testcase_10 WA -
testcase_11 AC 22 ms
25,680 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 21 ms
23,648 KB
testcase_15 WA -
testcase_16 AC 20 ms
21,556 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
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 (str.Length % 2 == 1)
                    {
                        if (i + j >= str.Length || i - j < 0)
                            break;

                        if (str[i + j] == str[i - j])
                            count++;
                    }
                    else
                    {
                        if (i + j >= str.Length || i - j - 1 < 0)
                            break;

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

                if (max_count < count)
                    max_count = count;
            }

            if (str.Length % 2 == 1)
                return max_count * 2 + 1;
            else
                return max_count * 2 + 2;

        }
    }
}

0