結果

問題 No.238 Mr. K's Another Gift
ユーザー H3PO4H3PO4
提出日時 2020-06-04 16:27:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 557 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 179,712 KB
最終ジャッジ日時 2024-05-07 00:53:45
合計ジャッジ時間 8,188 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
57,344 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 46 ms
57,728 KB
testcase_05 AC 53 ms
61,548 KB
testcase_06 AC 41 ms
60,160 KB
testcase_07 AC 44 ms
63,232 KB
testcase_08 AC 45 ms
62,976 KB
testcase_09 AC 45 ms
65,792 KB
testcase_10 AC 36 ms
51,840 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 TLE -
testcase_15 TLE -
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 #

S = input()
L = len(S)


def is_palindrome(s):
    for i in range(len(s) // 2):
        if s[i] != s[len(s) - 1 - i]:
            return False
    return True


if is_palindrome(S):
    print(S[:L // 2] + S[L // 2] + S[L // 2:])
    exit()

for i in range(L // 2):
    if S[i] != S[L - 1 - i]:
        s1 = S[:i] + S[L - 1 - i] + S[i:]
        s2 = S[:L - i] + S[i] + S[L - i:]
        if is_palindrome(s1):
            print(s1)
            break
        elif is_palindrome(s2):
            print(s2)
            break
        else:
            print('NA')
0