-
백준 11945번: 뜨거운 붕어빵구현(Implementation) 2018. 7. 23. 17:53반응형
https://www.acmicpc.net/problem/11945
1. 문제
반대로 출력 하기
2. 알고리즘
키워드 - 정렬, 구현
3. 코드
1234567891011121314151617181920212223242526272829303132333435#include <iostream>#include <sstream>#include <string>#include <algorithm>#include <functional>#include <vector>#include <list>#include <queue>#include <deque>#include <map>#include <set>#include <stack>#include <math.h>using namespace std;#define MAX_SIZE 100#define INF 0x7fffffff#define CENDL "\n"#define ll long longint main() {cin.tie(0);std::ios::sync_with_stdio(false);int n, m; cin >> n >> m;for(int i=0;i<n;i++) {string s; cin >> s;reverse(s.begin(), s.end());cout << s << CENDL;}return 0;}cs 반응형'구현(Implementation)' 카테고리의 다른 글
백준 8974번: 희주의 수학시험 (0) 2018.07.25 백준 13410번: 거꾸로 구구단 (0) 2018.07.23 백준 11966번: 2의 제곱인가? (0) 2018.07.23 백준 10829번: 이진수 변환 (0) 2018.07.23 백준 5789번: 한다 안한다 (0) 2018.07.23