HDU 5264

4863 단어 ACMHDUbest
pog loves szh I  
 Accepts: 497
 
 Submissions: 822
 Time Limit: 2000/1000 MS (Java/Others)
 
 Memory Limit: 65536/65536 K (Java/Others)
문제 설명
pog       ,                   , abcd efgh,           aebfcgdh !
szh       ,               , efgh   hgfe,                ,  abcd efgh   ahbgcfde !
      ,pog      szh        ,             ,  szh pog  ,szh  pog            。

입력 설명
         
    
     T(1T100)
    
    
     T
    
    
     T
                              
    
     (|S|100)
    

출력 설명
      ,    ,          。

입력 샘플
1
aabbca

출력 샘플
abc
aba

Hint
   hack       
#include <bits/stdc++.h>

using namespace std;
string s, s1, s2;

int main()
{
    int T;
    scanf("%d", &T);

    while(T--)
    {
        string s1;
        string s2;
        cin>>s;
        int len = s.size();
        //cout<<len<<endl;
        for(int i=0; i<len; i++)
        {
            if(i&1) s2 += s[i];
            else s1 += s[i];
        }
        reverse(s2.begin(), s2.end());
        cout<<s1<<endl;
        cout<<s2<<endl;
    }
    return 0;
}

/*
3
abdbdhhfg
andj
jdf

*/

좋은 웹페이지 즐겨찾기