Notice
Recent Posts
Recent Comments
Link
할껀하고놀자
[백준] 10219번 Meats On The Grill 본문
728x90
단순히 입력받고 뒤집어 출력해도 정답으로 인정된다.
O(n^3)의 시간복잡도를 가짐.
#include<iostream>
#include<string>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
int T;
cin >> T;
for (int i = 0; i < T; i++) {
int H, W;
cin >> H >> W;
for (int j = 0; j < H; j++) {
string s;
cin >> s;
for (int k = s.length()-1; k >= 0; k--) {
cout << s[k];
}
cout << endl;
}
}
return 0;
}
'[IT] > 백준' 카테고리의 다른 글
[백준] 12904번 A와 B (0) | 2019.06.08 |
---|---|
[백준] 17176번 암호해독기 (0) | 2019.06.08 |
[백준] 2346번 풍선 터뜨리기 (0) | 2019.06.08 |
[백준] 1931번 회의실 배정 (0) | 2019.06.02 |
[백준] 1946번 신입사원 (0) | 2019.06.02 |
Comments