結果

問題 No.238 Mr. K's Another Gift
ユーザー nebukuro09nebukuro09
提出日時 2016-10-22 23:00:35
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 621 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-05-02 22:38:02
合計ジャッジ時間 5,005 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
11,648 KB
testcase_01 AC 10 ms
6,272 KB
testcase_02 AC 10 ms
6,272 KB
testcase_03 AC 10 ms
6,272 KB
testcase_04 AC 11 ms
6,144 KB
testcase_05 AC 19 ms
6,528 KB
testcase_06 AC 16 ms
6,400 KB
testcase_07 AC 27 ms
6,656 KB
testcase_08 AC 30 ms
6,656 KB
testcase_09 AC 46 ms
6,656 KB
testcase_10 AC 10 ms
6,400 KB
testcase_11 AC 10 ms
6,400 KB
testcase_12 AC 10 ms
6,144 KB
testcase_13 AC 17 ms
6,272 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
権限があれば一括ダウンロードができます

ソースコード

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