码迷,mamicode.com
首页 > 其他好文 > 详细

【ICM Technex 2018 and Codeforces Round #463 (Div. 1 + Div. 2, combined) A】 Palindromic Supersequence

时间:2018-02-18 20:41:19      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:ever   ring   字符   down   force   str   std   super   .com   

【链接】 我是链接,点我呀:)
【题意】


在这里输入题意

【题解】


字符串倒着加到原串右边就好

【代码】



#include <bits/stdc++.h>
using namespace std;

int main(){
    #ifdef LOCAL_DEFINE
        freopen("rush_in.txt", "r", stdin);
    #endif
    ios::sync_with_stdio(0),cin.tie(0);
    string s;
    cin >> s;
    cout<<s;
    reverse(s.begin(),s.end());
    cout<<s<<endl;
    return 0;
}

【ICM Technex 2018 and Codeforces Round #463 (Div. 1 + Div. 2, combined) A】 Palindromic Supersequence

标签:ever   ring   字符   down   force   str   std   super   .com   

原文地址:https://www.cnblogs.com/AWCXV/p/8453115.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!