結果

問題 No.588 空白と回文
ユーザー neko_the_shadowneko_the_shadow
提出日時 2018-06-22 11:53:04
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 421 ms / 2,000 ms
コード長 911 bytes
コンパイル時間 928 ms
コンパイル使用メモリ 112,420 KB
実行使用メモリ 26,884 KB
最終ジャッジ日時 2024-06-30 17:55:19
合計ジャッジ時間 4,035 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
24,840 KB
testcase_01 AC 24 ms
24,584 KB
testcase_02 AC 25 ms
24,492 KB
testcase_03 AC 285 ms
24,328 KB
testcase_04 AC 25 ms
24,472 KB
testcase_05 AC 24 ms
26,624 KB
testcase_06 AC 24 ms
24,840 KB
testcase_07 AC 24 ms
24,368 KB
testcase_08 AC 25 ms
24,472 KB
testcase_09 AC 25 ms
26,884 KB
testcase_10 AC 24 ms
24,756 KB
testcase_11 AC 293 ms
24,620 KB
testcase_12 AC 36 ms
24,328 KB
testcase_13 AC 25 ms
26,528 KB
testcase_14 AC 24 ms
24,840 KB
testcase_15 AC 25 ms
26,524 KB
testcase_16 AC 24 ms
24,324 KB
testcase_17 AC 318 ms
24,200 KB
testcase_18 AC 24 ms
26,520 KB
testcase_19 AC 24 ms
24,584 KB
testcase_20 AC 78 ms
26,756 KB
testcase_21 AC 421 ms
26,652 KB
testcase_22 AC 95 ms
22,456 KB
testcase_23 AC 275 ms
24,356 KB
testcase_24 AC 24 ms
24,368 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Linq;

namespace _588
{
    class Program
    {
        static void Main(string[] args)
        {
            var str = Console.ReadLine();
            int answer = 0;
            for (int start = 0, len = str.Count(); start < len; start++)
            {
                for (int end = start; end < len; end++)
                {
                    if (str[start] != str[end])
                    {
                        continue;
                    }

                    int count = 0;
                    for (int x = start, y = end; x <= end; x++, y--)
                    {
                        if (str[x] == str[y])
                        {
                            count++;
                        }
                    }

                    answer = Math.Max(answer, count);
                }
            }

            Console.WriteLine(answer);
        }
    }
}
0