結果

問題 No.238 Mr. K's Another Gift
ユーザー nebukuro09nebukuro09
提出日時 2016-10-22 23:20:46
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 655 bytes
コンパイル時間 620 ms
コンパイル使用メモリ 76,576 KB
実行使用メモリ 78,208 KB
最終ジャッジ日時 2024-05-02 22:38:24
合計ジャッジ時間 5,850 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
76,032 KB
testcase_01 AC 76 ms
75,420 KB
testcase_02 AC 79 ms
75,520 KB
testcase_03 AC 77 ms
75,272 KB
testcase_04 AC 81 ms
76,544 KB
testcase_05 AC 99 ms
77,984 KB
testcase_06 AC 80 ms
76,296 KB
testcase_07 AC 85 ms
77,460 KB
testcase_08 AC 85 ms
77,824 KB
testcase_09 AC 86 ms
78,080 KB
testcase_10 AC 77 ms
75,388 KB
testcase_11 AC 79 ms
75,704 KB
testcase_12 AC 78 ms
75,940 KB
testcase_13 AC 76 ms
76,092 KB
testcase_14 AC 82 ms
77,716 KB
testcase_15 AC 85 ms
77,852 KB
testcase_16 AC 86 ms
77,448 KB
testcase_17 AC 82 ms
77,332 KB
testcase_18 AC 83 ms
78,208 KB
testcase_19 AC 77 ms
75,304 KB
testcase_20 AC 79 ms
75,296 KB
testcase_21 AC 79 ms
75,776 KB
testcase_22 AC 77 ms
75,520 KB
testcase_23 AC 76 ms
76,148 KB
testcase_24 AC 82 ms
76,836 KB
testcase_25 AC 80 ms
77,312 KB
testcase_26 AC 80 ms
76,288 KB
testcase_27 AC 83 ms
77,824 KB
testcase_28 AC 78 ms
76,416 KB
testcase_29 AC 86 ms
78,080 KB
testcase_30 AC 75 ms
75,656 KB
testcase_31 AC 77 ms
75,952 KB
testcase_32 AC 79 ms
75,904 KB
testcase_33 AC 79 ms
76,308 KB
testcase_34 AC 75 ms
75,556 KB
testcase_35 AC 85 ms
77,628 KB
testcase_36 AC 83 ms
77,824 KB
testcase_37 AC 85 ms
77,720 KB
testcase_38 AC 85 ms
77,600 KB
testcase_39 AC 78 ms
75,648 KB
testcase_40 AC 76 ms
75,900 KB
testcase_41 AC 75 ms
75,392 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