99클럽 코테 스터디 13일차 TIL + 스택/큐
2024. 11. 9. 12:34ㆍAlgorithm Problem Solving
https://www.acmicpc.net/problem/12605
1. 알고리즘! 생각해보자
1) 스택에 넣고 pop
2. 해결 코드
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Stack;
public class Main{
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine());
Stack<String> word =new Stack<>();
StringBuilder sb = new StringBuilder();
for (int i = 0; i < N; i++) {
String w = br.readLine();
String[] temp = w.split(" ");
for (int j = 0; j < temp.length; j++) {
word.push(temp[j]);
}
sb.append("Case #" + (i+1) + ": ");
for (int j = 0; j < temp.length; j++) {
sb.append(word.pop()).append(" ");
}
sb.append('\n');
}
System.out.println(sb);
}
}
3. 레퍼런스
'Algorithm Problem Solving' 카테고리의 다른 글
99클럽 코테 스터디 17일차 TIL + 스택/큐 (1) | 2024.11.13 |
---|---|
99클럽 코테 스터디 15일차 TIL + 스택/큐 (2) | 2024.11.11 |
99클럽 코테 스터디 12일차 TIL + 스택/큐 (0) | 2024.11.08 |
99클럽 코테 스터디 10일차 TIL + 해쉬 (1) | 2024.11.06 |
99클럽 코테 스터디 9일차 TIL + 해시 (0) | 2024.11.05 |