Accepted
Code
#include<bits/stdc++.h>
using namespace std;
string even(string s)
{
while(s.size()>1){
string temp="";
for(int i=0; i<s.size(); i++){
if(i%2==0){
temp+=s[i];
}
}
s=temp;
}
return s;
}
int main()
{
int t;
cin>>t;
vector<string>r(t);
for(int i=0; i<t; i++)
{
string s;
cin>>s;
r[i]=even(s);
}
for(int i=0; i<t; i++)
{
cout<<r[i]<<endl;
}
}
Information
- Submit By
- Type
- Submission
- Problem
- P1080 String Algorithm
- Contest
- Bangladesh 2.0
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-08-16 16:10:13
- Judged At
- 2024-10-03 13:28:24
- Judged By
- Score
- 100
- Total Time
- 5ms
- Peak Memory
- 584.0 KiB