시간&메모리 제한
문제
입력&출력
문제 풀이
package com.Back;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Stack;
public class Back_10773 {
public static void main(String[] args) throws NumberFormatException, IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
Stack<Integer> arr = new Stack<Integer>();
int N = Integer.parseInt(br.readLine());
for (int i = 0; i < N; i++) {
int tmp = Integer.parseInt(br.readLine());
if(tmp==0) {
arr.pop();
continue;
}
arr.add(tmp);
}
int sum=0;
for(int tmp:arr) {
sum+=tmp;
}
System.out.println(sum);
}
}
- 자료구조 중에 Stack을 이용하는 문제입니다.
- Stack의 기본 원리 FIFO를 묻는 문제였습니다.
'Algorithm > 백준 알고리즘' 카테고리의 다른 글
백준_1302 베스트셀러(자바) / 문자열 (0) | 2021.07.07 |
---|---|
백준_1764 듣보잡(자바) / 문자열 (0) | 2021.07.07 |
백준_10773 균형잡힌 세상(자바)/자료구조 (0) | 2021.07.06 |
백준_1010 다리 놓기(자바) /DP (0) | 2021.07.05 |
백준_1495 기타리스트(자바) / DP (0) | 2021.05.15 |