結果

問題 No.599 回文かい
ユーザー keymoon_68keymoon_68
提出日時 2017-11-25 12:11:19
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 565 bytes
コンパイル時間 2,565 ms
コンパイル使用メモリ 103,168 KB
実行使用メモリ 20,864 KB
最終ジャッジ日時 2024-05-05 12:33:23
合計ジャッジ時間 6,305 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
17,280 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 OLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
evil_0.txt -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
class P
{
    static void Main()
    {
        Console.WriteLine(kaibunkai(Console.ReadLine()));
    }
    static int kaibunkai(string s)
    {
        int res = 1;
        for (int i = 1; i < s.Length / 2; i++)
        {
            if (s.Substring(0, i) == s.Substring(s.Length - i, i))
            {
                Console.WriteLine($"{s.Substring(0, i)},{s.Substring(i, s.Length - i * 2)},{s.Substring(s.Length - i, i)}");
                res += kaibunkai(s.Substring(i + 1, s.Length - i * 2));
            }
        }
        return res;
    }
}
0