結果

問題 No.238 Mr. K's Another Gift
ユーザー nebukuro09nebukuro09
提出日時 2016-10-22 23:20:46
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 655 bytes
コンパイル時間 1,552 ms
コンパイル使用メモリ 76,564 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-11-23 17:46:42
合計ジャッジ時間 7,119 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
75,648 KB
testcase_01 AC 86 ms
75,520 KB
testcase_02 AC 87 ms
75,296 KB
testcase_03 AC 88 ms
75,392 KB
testcase_04 AC 95 ms
76,048 KB
testcase_05 AC 90 ms
77,568 KB
testcase_06 AC 80 ms
76,584 KB
testcase_07 AC 86 ms
78,080 KB
testcase_08 AC 86 ms
77,740 KB
testcase_09 AC 87 ms
78,080 KB
testcase_10 AC 77 ms
75,900 KB
testcase_11 AC 83 ms
75,648 KB
testcase_12 AC 79 ms
75,392 KB
testcase_13 AC 77 ms
75,680 KB
testcase_14 AC 85 ms
77,824 KB
testcase_15 AC 87 ms
78,080 KB
testcase_16 AC 85 ms
77,824 KB
testcase_17 AC 82 ms
77,696 KB
testcase_18 AC 85 ms
78,080 KB
testcase_19 AC 77 ms
75,264 KB
testcase_20 AC 77 ms
75,516 KB
testcase_21 AC 78 ms
75,648 KB
testcase_22 AC 78 ms
75,392 KB
testcase_23 AC 77 ms
75,520 KB
testcase_24 AC 84 ms
76,416 KB
testcase_25 AC 84 ms
76,472 KB
testcase_26 AC 81 ms
76,176 KB
testcase_27 AC 88 ms
77,732 KB
testcase_28 AC 82 ms
76,724 KB
testcase_29 AC 89 ms
77,440 KB
testcase_30 AC 79 ms
75,824 KB
testcase_31 AC 78 ms
75,552 KB
testcase_32 AC 82 ms
75,776 KB
testcase_33 AC 90 ms
76,308 KB
testcase_34 AC 81 ms
75,776 KB
testcase_35 AC 88 ms
77,824 KB
testcase_36 AC 87 ms
77,580 KB
testcase_37 AC 89 ms
77,984 KB
testcase_38 AC 88 ms
77,604 KB
testcase_39 AC 80 ms
75,264 KB
testcase_40 AC 79 ms
75,420 KB
testcase_41 AC 79 ms
75,832 KB
testcase_42 AC 76 ms
75,776 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'
        exit()
print 'NA'
0