일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 컴퓨터 네트워크
- 자바스크립트
- 프로그래밍 언어론
- React JS
- useEffect
- Java
- 자바 공부
- 코딩테스트 고득점 Kit
- design pattern
- useState
- react firebase
- JavaScript
- 리액트
- 데이터모델링과마이닝
- codesandbox
- 프로그래머스 완전탐색
- 자바
- 코틀린
- vanillaJS
- 장고
- 프로그래머스
- websocket
- react hook
- 리액트 훅
- 프로그래머스 자바
- react
- 코딩테스트 고득점 Kit 완전탐색
- NextJS
- 디자인 패턴
- 백준
Archives
- Today
- Total
기록하는 개발자
[백준][JAVA] 10828 : 스택 본문
728x90
https://www.acmicpc.net/problem/10828
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
public class Main {
ArrayList<Integer>list;
Main(){
list=new ArrayList<Integer>();
}
void pushX(int num){
list.add(num);
}
int pop(){
if(list.isEmpty()) return -1;
return list.remove(list.size()-1);
}
int size(){
return list.size();
}
int empty(){
int result=(list.size()==0)? 1 : 0;
return result;
}
int top(){
if(this.empty()==1) return -1;
return list.get(list.size()-1);
}
public static void main(String []args) {
BufferedReader BR = new BufferedReader(new InputStreamReader((System.in)));
try {
int n = Integer.parseInt(BR.readLine());
Main newStack = new Main();
String input = "";
while (n-- > 0) {
input = BR.readLine();
if (input.toLowerCase().contains("push")) {
int temp = Integer.parseInt(input.split(" ")[1]);
newStack.pushX(temp);
}
else if (input.toLowerCase().contains("pop"))
System.out.println(newStack.pop());
else if (input.toLowerCase().contains("size"))
System.out.println(newStack.size());
else if (input.toLowerCase().contains("empty"))
System.out.println(newStack.empty());
else if (input.toLowerCase().contains("top"))
System.out.println(newStack.top());
else return;
}
}catch (Exception e) { e.printStackTrace();}
}
}
728x90
'Algorithm' 카테고리의 다른 글
[백준][JAVA] 1874 : 최소 힙 (0) | 2021.07.21 |
---|---|
[백준][JAVA] 1874 : 스택 수열 (0) | 2021.07.11 |
[백준][JAVA] 1620 : 나는야 포켓몬 마스터 이다솜 (0) | 2021.07.11 |
[백준][JAVA] 10816: 숫자 카드2 (0) | 2021.07.11 |
[백준][JAVA] 11726: 2×n 타일링 (0) | 2021.07.11 |