結果

問題 No.238 Mr. K's Another Gift
ユーザー りあん
提出日時 2015-07-05 23:05:33
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 2,864 bytes
コンパイル時間 1,044 ms
コンパイル使用メモリ 109,516 KB
実行使用メモリ 29,228 KB
最終ジャッジ日時 2024-07-07 23:44:53
合計ジャッジ時間 11,283 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample -- * 3
other AC * 11 WA * 3 TLE * 2 -- * 24
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.IO;
using System.Text;
using System.Numerics;

namespace Solver
{
    class Program
    {
        const int M = 1000000007;
        static void Main()
        {
            var sw = new System.IO.StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false };
            var sc = new Scan();
            var s = sc.Str;
            int n = s.Length;
            char[] c = new char[n - 1];
            for (int i = 0; i < n - 1; i++)
                c[i] = s[i + 1];

            if (kaibun(c))
            {
                sw.WriteLine(s + s[0].ToString());
                sw.Flush();
                return;
            }
            for (int i = 0; i < n - 1; i++)
            {
                c[i] = s[i];
                if (kaibun(c))
                {
                    sw.WriteLine(s.Insert(n - i - 1, s[i + 1].ToString()));
                    sw.Flush();
                    return;
                }
            }
            sw.WriteLine("NA");
            sw.Flush();
        }
        static bool kaibun(char[] c)
        {
            for (int i = 0; i < c.Length; i++)
            {
                if (c[i] != c[c.Length - i - 1])
                    return false;
            }
            return true;
        }
    }
    class Scan
    {
        public int Int { get { return int.Parse(Console.ReadLine().Trim()); } }
        public long Long { get { return long.Parse(Console.ReadLine().Trim()); } }
        public string Str { get { return Console.ReadLine().Trim(); } }
        public int[] IntArr { get { return Console.ReadLine().Trim().Split().Select(int.Parse).ToArray(); } }
        public long[] LongArr { get { return Console.ReadLine().Trim().Split().Select(long.Parse).ToArray(); } }
        public double[] DoubleArr { get { return Console.ReadLine().Split().Select(double.Parse).ToArray(); } }
        public string[] StrArr { get { return Console.ReadLine().Trim().Split(); } }
        public List<int> IntList { get { return Console.ReadLine().Trim().Split().Select(int.Parse).ToList(); } }
        public List<long> LongList { get { return Console.ReadLine().Trim().Split().Select(long.Parse).ToList(); } }
        public void Multi(out int a, out int b) { var arr = IntArr; a = arr[0]; b = arr[1]; }
        public void Multi(out int a, out int b, out int c) { var arr = IntArr; a = arr[0]; b = arr[1]; c = arr[2]; }
        public void Multi(out int a, out string b) { var arr = StrArr; a = int.Parse(arr[0]); b = arr[1]; }
        public void Multi(out int a, out char b) { var arr = StrArr; a = int.Parse(arr[0]); b = arr[1][0]; }
        public void Multi(out long a, out long b) { var arr = LongArr; a = arr[0]; b = arr[1]; }
        public void Multi(out string a, out string b) { var arr = StrArr; a = arr[0]; b = arr[1]; }
    }
}
0