-
백준 2902번: KMP는 왜 KMP일까?문자열(String) 2018. 7. 3. 10:22반응형
https://www.acmicpc.net/problem/2902
1. 문제
대문자 출력 하는 문제
2. 알고리즘
키워드 - 구현, 문자열
O(n)
3. 코드
12345678910111213141516171819202122#include <iostream>#include <algorithm> // min#include <math.h>#include <string>#include <vector>using namespace std;int main() {string word; cin >> word;const int size = word.size();for (int i = 0; i < size; i++) {char ch = word[i];if (ch >= 'A' && ch <= 'Z')cout << ch;}printf("\n");return 0;}cs 반응형'문자열(String)' 카테고리의 다른 글
백준 3059번: 등장하지 않는 문자의 합 (0) 2018.07.20 백준 2957번: 창영이의 일기장 (0) 2018.07.19 백준 2675번: 문자열 반복 (0) 2018.07.03 백준 2857번: FBI (0) 2018.06.29 백준 9933번: 민균이의 비밀번호 (0) 2018.06.29