Recent Posts
Notice
No Rules Rules
한다 안한다 (feat. 백준, 5789번) 본문
728x90
반응형
한다 안한다
https://www.acmicpc.net/problem/5789
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <string>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int N;
string str;
cin >> N;
for(register int n = 0; n < N; ++n){
bool result;
cin >> str;
while(!str.empty()){
if(str.front() == str.back())
result = true;
else
result = false;
str.erase(0, 1);
str.pop_back();
}
if(result)
cout << "Do-it\n";
else
cout << "Do-it-Not\n";
}
return 0;
}
// *&)*@*
반응형
단순 문자 비교 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
치킨댄스를 추는 곰곰이를 본 임스 2 (feat. 백준, 26068번) (0) | 2022.11.28 |
---|---|
뒤집기 (feat. 백준, 1439번) (0) | 2022.11.23 |
날짜 계산 (feat. 백준, 1476번) (0) | 2022.11.23 |
험난한 등굣길 (feat. 백준, 26009번) (0) | 2022.11.22 |
K-Queen (feat. 백준, 26006번) (0) | 2022.11.21 |
Comments