https://www.acmicpc.net/problem/5524
풀이
입력에 대해 문자열을 하나하나 탐색해주며 대문자면 소문자로 변환 후 출력 소문자면 그대로 출력의 과정을 반복해준다
시간 복잡도 : $O(N*20)$
/* basic setup {{{ */
#include<bits/stdc++.h>
#define ff first
#define ss second
#define pb push_back
#define sz(x) ((int)x.size())
#define all(x) x.begin(),x.end()
#define compress(x) sort(all(x)), x.erase(unique(all(x)), x.end())
#define fast_io ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0)
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
typedef const int ci;
const int MOD = 1e9+7;
const int INF = 0x3f3f3f3f;
const ll LINF = 0x3f3f3f3f3f3f3f3f;
/*}}}*/
int main(){
fast_io;
int n;
string s1;
cin>>n;
while(n--){
cin>>s1;
for(char c : s1)
cout<<(char)(c>='a'?c:(c-'A'+'a'));
cout<<'\n';
}
cout<<'\n';
}
'백준 문제 해설' 카테고리의 다른 글
백준 18409 母音を数える (Counting Vowels) (0) | 2022.11.04 |
---|---|
백준 4589 Gnome Sequencing (0) | 2022.11.03 |
백준 23235 The Fastest Sorting Algorithm In The World (0) | 2022.11.02 |
백준 17356 욱 제 (0) | 2022.11.01 |
백준 20648 Rectangular Pasture (0) | 2022.10.30 |
백준 25625 샤틀버스 (0) | 2022.10.29 |
백준 25494 단순한 문제 (Small) (0) | 2022.10.28 |
백준 4470 줄번호 (0) | 2022.10.27 |