結果

問題 No.273 回文分解
ユーザー aketijyuuzouaketijyuuzou
提出日時 2024-10-12 23:58:15
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 1,867 bytes
コンパイル時間 1,038 ms
コンパイル使用メモリ 113,688 KB
実行使用メモリ 19,328 KB
最終ジャッジ日時 2024-10-12 23:58:19
合計ジャッジ時間 3,542 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
18,432 KB
testcase_01 AC 29 ms
18,816 KB
testcase_02 AC 28 ms
18,816 KB
testcase_03 AC 29 ms
18,688 KB
testcase_04 AC 29 ms
18,816 KB
testcase_05 AC 28 ms
18,816 KB
testcase_06 AC 29 ms
18,816 KB
testcase_07 AC 29 ms
18,560 KB
testcase_08 AC 29 ms
18,816 KB
testcase_09 AC 29 ms
18,816 KB
testcase_10 AC 28 ms
18,816 KB
testcase_11 AC 28 ms
18,560 KB
testcase_12 AC 29 ms
18,816 KB
testcase_13 AC 28 ms
18,688 KB
testcase_14 AC 30 ms
19,328 KB
testcase_15 AC 29 ms
18,432 KB
testcase_16 AC 30 ms
18,816 KB
testcase_17 AC 29 ms
18,816 KB
testcase_18 AC 29 ms
18,688 KB
testcase_19 AC 28 ms
18,816 KB
testcase_20 AC 29 ms
18,560 KB
testcase_21 AC 29 ms
18,432 KB
testcase_22 AC 29 ms
18,944 KB
testcase_23 AC 29 ms
18,688 KB
testcase_24 AC 30 ms
18,944 KB
testcase_25 AC 29 ms
18,816 KB
testcase_26 AC 30 ms
19,200 KB
testcase_27 AC 30 ms
19,072 KB
testcase_28 AC 30 ms
19,200 KB
testcase_29 AC 29 ms
18,944 KB
testcase_30 AC 30 ms
19,200 KB
testcase_31 AC 28 ms
18,816 KB
testcase_32 AC 29 ms
18,816 KB
testcase_33 AC 29 ms
18,688 KB
testcase_34 AC 30 ms
18,816 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.Collections.Generic;
using System.Linq;

class Program
{
    static string InputPattern = "InputX";

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

        if (InputPattern == "Input1") {
            WillReturn.Add("ABACDDCEFGFE");
            //5
            //例えば「ABA」と「CDDC」と「EFGFE」の3つの回文に分解できる。
            //最も長い回文は「EFGFE」で文字数は5である。
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("ZZ");
            //1
            //「ZZ」はすでに回文であるが必ず2つ以上の回文に分解しなければならない。
            //1文字の「Z」も回文とみなせるので「Z」と「Z」に分解でき文字数は1である。
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("AABAAABBABBABBBAAABAA");
            //8
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

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

        //回文判定
        Predicate<string> IsKaibun = (pStr) =>
            pStr.SequenceEqual(pStr.Reverse());

        var KaibunList = new List<string>();
        for (int I = 0; I <= S.Length - 1; I++) {
            for (int J = S.Length - 1; I <= J; J--) {
                string wkStr = S.Substring(I, J - I + 1);
                if (IsKaibun(wkStr) == false) continue;
                KaibunList.Add(wkStr);
                break;
            }
        }

        //分解してない回文をRemove
        KaibunList.RemoveAll(X => X == S);

        Console.WriteLine(KaibunList.Max(X => X.Length));
    }
}

0