[UCPC][2019][예선] G번 풀이

less than 1 minute read

풀이

UCPC가 차례대로 등장하므로 이를 쭉 읽으면서 체크하면 된다.

코드


#include <cstdio>
#include <iostream>
#include <string>
using namespace std;
string s;
char arr[4] = { 'U','C','P','C' };
int main(void) {
	getline(cin,s);
	
	int idx = 0;
	for (int i = 0; i< s.size(); i++) {
		if (arr[idx] == s[i]) {
			idx += 1;
			if (idx == 4) {
				break;
			}
		}
	}
	if (idx == 4) {
		cout << "I love UCPC" << endl;
	}
	else {
		cout << "I hate UCPC" << endl;
	}
	return 0;
}

Tags:

Categories:

Updated: