Recent Posts
Notice
No Rules Rules
도비의 난독증 테스트 (feat. 백준, 2204번) 본문
728x90
반응형
도비의 난독증 테스트
https://www.acmicpc.net/problem/2204
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <string>
#include <set>
#include <algorithm>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int N;
string str, tmp;
set<pair<string, string>> ans;
while(1){
cin >> N;
if(N == 0)
break;
for(register int n = 0; n < N; ++n){
cin >> str;
tmp = str;
for(auto& ch : tmp)
if('A' <= ch && ch <= 'Z')
ch = ch - 'A' + 'a';
ans.insert(make_pair(tmp, str));
}
cout << ans.begin()->second << "\n";
ans.clear();
}
return 0;
}
// *&)*@*
반응형
단순 문자열 변환 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
나뭇잎 학회 (feat. 백준, 26005번) (0) | 2022.11.21 |
---|---|
종이자르기 (feat. 백준, 2628번) (0) | 2022.11.17 |
골드바흐 파티션 (feat. 백준, 17103번) (0) | 2022.11.16 |
미션 도네이션 (feat. 백준, 25965번) (0) | 2022.11.15 |
30 (feat. 백준, 10610번) (0) | 2022.11.10 |
Comments