Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Counting
- java
- dynamic programming
- database
- sorting
- 자바
- Method
- 파이썬
- hash table
- Stack
- 코테
- 구현
- Math
- simulation
- Number Theory
- bit manipulation
- Binary Tree
- Class
- Matrix
- geometry
- SQL
- string
- Binary Search
- 코딩테스트
- implement
- array
- Data Structure
- two pointers
- Tree
- greedy
Archives
- Today
- Total
코린이의 소소한 공부노트
[백준 온라인 저지] 10773. 제로 본문
1. 입력
- 첫 번째 줄에 정수 K가 주어진다. (1 ≤ K ≤ 100,000)
- 이후 K개의 줄에 정수가 1개씩 주어진다. 정수는 0에서 1,000,000 사이의 값을 가지며, 정수가 "0" 일 경우에는 가장 최근에 쓴 수를 지우고, 아닐 경우 해당 수를 쓴다.
- 정수가 "0"일 경우에 지울 수 있는 수가 있음을 보장할 수 있다.
2. 출력
- 재민이가 최종적으로 적어 낸 수의 합을 출력한다. 최종적으로 적어낸 수의 합은 231-1보다 작거나 같은 정수이다.
3. 코드
import java.util.*;
import java.io.*;
class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
Stack<String> stack = new Stack<>();
int n = Integer.valueOf(br.readLine());
for(int i=0 ; i<n ; i++){
String s = br.readLine();
if(s.equals("0")) stack.pop();
else stack.push(s);
}
int sum = 0;
while(!stack.empty())
sum += Integer.valueOf(stack.pop());
System.out.print(sum);
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[백준 온라인 저지] 4949. 균형잡힌 세상 (0) | 2023.04.20 |
---|---|
[백준 온라인 저지] 9012. 괄호 (0) | 2023.04.20 |
[백준 온라인 저지] 10828. 스택 (0) | 2023.04.20 |
[백준 온라인 저지] 26069. 붙임성 좋은 총총이 (0) | 2023.04.20 |
[백준 온라인 저지] 25192. 인사성 밝은 곰곰이 (0) | 2023.04.20 |