結果

問題 No.238 Mr. K's Another Gift
ユーザー nebukuro09nebukuro09
提出日時 2016-10-22 23:00:49
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 621 bytes
コンパイル時間 1,660 ms
コンパイル使用メモリ 76,700 KB
実行使用メモリ 201,592 KB
最終ジャッジ日時 2024-11-23 17:46:32
合計ジャッジ時間 35,433 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
82,368 KB
testcase_01 AC 71 ms
169,048 KB
testcase_02 AC 70 ms
82,220 KB
testcase_03 AC 71 ms
175,904 KB
testcase_04 AC 78 ms
83,396 KB
testcase_05 AC 77 ms
181,432 KB
testcase_06 AC 71 ms
83,016 KB
testcase_07 AC 76 ms
84,708 KB
testcase_08 AC 79 ms
84,796 KB
testcase_09 AC 78 ms
84,576 KB
testcase_10 AC 73 ms
82,608 KB
testcase_11 AC 68 ms
82,656 KB
testcase_12 AC 71 ms
82,588 KB
testcase_13 AC 86 ms
77,836 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,559 ms
131,228 KB
testcase_18 TLE -
testcase_19 AC 1,500 ms
162,824 KB
testcase_20 AC 72 ms
75,564 KB
testcase_21 AC 70 ms
75,564 KB
testcase_22 AC 70 ms
75,300 KB
testcase_23 AC 73 ms
75,196 KB
testcase_24 AC 71 ms
77,192 KB
testcase_25 AC 76 ms
76,680 KB
testcase_26 AC 73 ms
75,924 KB
testcase_27 AC 83 ms
77,584 KB
testcase_28 AC 72 ms
76,580 KB
testcase_29 AC 74 ms
77,448 KB
testcase_30 AC 66 ms
75,408 KB
testcase_31 AC 73 ms
75,492 KB
testcase_32 AC 77 ms
77,360 KB
testcase_33 AC 182 ms
78,088 KB
testcase_34 AC 943 ms
129,304 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 AC 1,117 ms
139,424 KB
testcase_40 AC 69 ms
75,564 KB
testcase_41 AC 71 ms
75,528 KB
testcase_42 AC 70 ms
201,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_kaibun(s):
    return all(s[i]==s[-i-1] for i in xrange(len(s)/2))

S = raw_input()
if is_kaibun(S):
    m = len(S)/2
    print S[:m]+S[m]+S[m:]
    exit()
for i in xrange(len(S)/2):
    j = len(S)-i-1
    if S[i] != S[j]:
        T = S[:i]+S[j]+S[i:]
        if is_kaibun(T):
            print T
            exit()
        T = S[:i+1]+S[j]+S[i+1:]
        if is_kaibun(T):
            print T
            exit()
        T = S[:j]+S[i]+S[j:]
        if is_kaibun(T):
            print T
            exit()
        T = S[:j+1]+S[i]+S[j+1:]
        if is_kaibun(T):
            print T
            exit()
print 'NA'
0