Recent Posts
Notice
No Rules Rules
당신은 운명을 믿나요? (feat. 백준, 27930번) 본문
728x90
반응형
당신은 운명을 믿나요?
https://www.acmicpc.net/problem/27930
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
string str;
string ans1 = "KOREA", ans2 = "YONSEI";
register int idx1 = 0, idx2 = 0;
cin >> str;
for(auto& ch : str){
if(ch == ans1.at(idx1))
++idx1;
if(ch == ans2.at(idx2))
++idx2;
if(idx1 == ans1.size()){
cout << ans1;
return 0;
}
else if(idx2 == ans2.size()){
cout << ans2;
return 0;
}
}
return 0;
}
// *&)*@*
반응형
단순 문자열 처리 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
2의 제곱인가? (feat. 백준, 11966번) (0) | 2023.04.06 |
---|---|
중앙 이동 알고리즘 (feat. 백준, 2903번) (0) | 2023.04.05 |
작업 (feat. 백준, 2056번) (0) | 2023.04.04 |
진법 변환 2 (feat. 백준, 11005번) (0) | 2023.04.04 |
진법 변환 (feat. 백준, 2745번) (0) | 2023.04.04 |
Comments