Notice
Recent Posts
Recent Comments
Link
Dev.baelanche
[백준 10773] 제로 본문
반응형
짱짱 쉬운 스텍 문제이다.
설명은 생략하겠다.
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int k = sc.nextInt();
Stack<Integer> s = new Stack();
while(k-->0) {
int n = sc.nextInt();
if(n != 0) s.push(n);
else s.pop();
}
int sum = 0;
while(!s.isEmpty()) {
sum += s.pop();
}
System.out.println(sum);
}
}
반응형
'Data Structure & Algorithm > PS - JAVA' 카테고리의 다른 글
[백준 11866] 조세퍼스 문제 0 (0) | 2019.06.29 |
---|---|
[백준 4949] 균형잡힌 세상 (0) | 2019.06.29 |
[백준 15685] 드래곤 커브 (0) | 2019.06.29 |
[백준 11729] 하노이 탑 이동 순서 (0) | 2019.06.25 |
[백준 10870] 피보나치 수 5 (0) | 2019.06.25 |
Comments