No Rules Rules

한다 안한다 (feat. 백준, 5789번) 본문

생활/코테

한다 안한다 (feat. 백준, 5789번)

개발하는 완두콩 2022. 11. 23. 12:15
728x90
반응형

한다 안한다
https://www.acmicpc.net/problem/5789

 

5789번: 한다 안한다

첫째 줄에는 테스트 케이스의 개수 N이 주어진다. (1 ≤ N ≤ 1000) 각 테스트 케이스는 한 줄로 이루어져 있으며, 0과 1로 이루어진 문자열이 주어진다. 문자열의 길이는 항상 짝수이고, 1000보다 작

www.acmicpc.net

 

// 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
반응형
Comments