結果

問題 No.238 Mr. K's Another Gift
ユーザー NoNo
提出日時 2017-05-24 20:39:02
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,253 bytes
コンパイル時間 813 ms
コンパイル使用メモリ 111,264 KB
実行使用メモリ 27,680 KB
最終ジャッジ日時 2024-09-19 16:27:18
合計ジャッジ時間 5,129 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
26,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 23 ms
24,088 KB
testcase_05 WA -
testcase_06 AC 25 ms
22,312 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 27 ms
26,632 KB
testcase_11 AC 25 ms
24,588 KB
testcase_12 AC 26 ms
24,592 KB
testcase_13 AC 26 ms
24,328 KB
testcase_14 AC 29 ms
22,840 KB
testcase_15 AC 31 ms
25,492 KB
testcase_16 AC 31 ms
25,616 KB
testcase_17 AC 31 ms
25,356 KB
testcase_18 AC 31 ms
27,288 KB
testcase_19 AC 30 ms
23,604 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 23 ms
26,228 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 25 ms
24,480 KB
testcase_27 WA -
testcase_28 AC 25 ms
24,100 KB
testcase_29 WA -
testcase_30 AC 26 ms
24,464 KB
testcase_31 AC 27 ms
26,712 KB
testcase_32 AC 27 ms
26,716 KB
testcase_33 AC 27 ms
26,728 KB
testcase_34 AC 30 ms
25,392 KB
testcase_35 AC 31 ms
25,492 KB
testcase_36 AC 31 ms
25,360 KB
testcase_37 AC 31 ms
25,480 KB
testcase_38 AC 31 ms
25,488 KB
testcase_39 AC 31 ms
27,664 KB
testcase_40 WA -
testcase_41 AC 24 ms
26,476 KB
testcase_42 AC 26 ms
24,392 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 Yuki
{
    class Program
    {
        static void Main(string[] args)
        {
            string s = Console.ReadLine();
            int i = 0;
            int j = s.Length - 1;
            int c = -1;
            int d = -1;

            bool f = true;
            while (i <= j)
            {
                if (s[i] != s[j])
                {
                    c = i;
                    d = j;
                    f = false;
                    break;
                }
                i++;
                j--;
            }

            if (f)
            {
                Console.Write(s.Insert(s.Length / 2, s[s.Length / 2].ToString()));
            }
            else
            {
                string a = s.Insert(c, s[d].ToString());
                string b = s.Insert(d, s[c].ToString());
                if (s.ToArray<char>() == b.Reverse<char>())
                {
                    Console.WriteLine(a);
                }else if (s.ToArray<char>() == b.Reverse<char>())
                {
                    Console.WriteLine(b);
                }
                else
                {
                    Console.WriteLine("NA");
                }
            }
        }
    }
}
0