結果

問題 No.238 Mr. K's Another Gift
ユーザー roiti46roiti46
提出日時 2015-07-05 22:57:21
言語 Python2
(2.7.18)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 6,680 KB
実行使用メモリ 6,476 KB
最終ジャッジ日時 2023-09-22 07:00:27
合計ジャッジ時間 3,050 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
5,884 KB
testcase_01 AC 11 ms
5,952 KB
testcase_02 AC 11 ms
5,856 KB
testcase_03 AC 11 ms
5,952 KB
testcase_04 AC 12 ms
6,052 KB
testcase_05 AC 12 ms
6,236 KB
testcase_06 AC 19 ms
6,092 KB
testcase_07 AC 14 ms
6,356 KB
testcase_08 AC 14 ms
6,476 KB
testcase_09 AC 18 ms
6,360 KB
testcase_10 AC 11 ms
5,944 KB
testcase_11 AC 12 ms
6,052 KB
testcase_12 AC 11 ms
5,952 KB
testcase_13 AC 11 ms
6,008 KB
testcase_14 AC 13 ms
6,224 KB
testcase_15 AC 17 ms
6,364 KB
testcase_16 AC 17 ms
6,360 KB
testcase_17 AC 12 ms
6,312 KB
testcase_18 AC 12 ms
6,308 KB
testcase_19 AC 12 ms
6,384 KB
testcase_20 AC 10 ms
5,864 KB
testcase_21 AC 11 ms
5,956 KB
testcase_22 AC 10 ms
5,860 KB
testcase_23 AC 11 ms
5,940 KB
testcase_24 AC 11 ms
6,032 KB
testcase_25 AC 12 ms
5,936 KB
testcase_26 AC 20 ms
6,164 KB
testcase_27 AC 17 ms
6,280 KB
testcase_28 AC 20 ms
6,152 KB
testcase_29 AC 19 ms
6,300 KB
testcase_30 AC 12 ms
5,888 KB
testcase_31 AC 11 ms
5,868 KB
testcase_32 AC 11 ms
5,940 KB
testcase_33 AC 11 ms
5,972 KB
testcase_34 AC 12 ms
6,180 KB
testcase_35 AC 16 ms
6,356 KB
testcase_36 AC 13 ms
6,452 KB
testcase_37 AC 14 ms
6,376 KB
testcase_38 AC 12 ms
6,388 KB
testcase_39 AC 12 ms
6,352 KB
testcase_40 AC 10 ms
5,884 KB
testcase_41 AC 11 ms
6,004 KB
testcase_42 AC 12 ms
5,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = raw_input()
n = len(s)
for i in xrange(n / 2):
    if s[i] != s[n-i-1]:
        t = s[:n-i] + s[i] + s[n-i:]
        u = s[:i] + s[-i-1] + s[i:]
        if t == t[::-1]:
            print t
            break
        elif u == u[::-1]:
            print u
            break
        else:
            print "NA"
            break
else:
    print s[:n / 2] + s[n / 2] + s[n / 2:]
0