티스토리 뷰

Algorithm/SWEA

[JAVA] SWEA D3 / 8931. 제로

heemang.dev 2024. 5. 23. 14:32
 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

 

코드

백준에서 푼 적이 있는 것 같다.

import java.io.*;
import java.util.*;

class Solution {

    static Stack<Integer> stack = new Stack<>();

    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int T = Integer.parseInt(br.readLine());

        for (int t = 1; t <= T; t++) {
            int k = Integer.parseInt(br.readLine());

            for (int i = 0; i < k; i++) {
                int num = Integer.parseInt(br.readLine());
                if (num == 0) {
                    stack.pop();
                } else {
                    stack.push(num);
                }
            }

            int sum = 0;
            while (!stack.isEmpty()) {
                sum += stack.pop();
            }

            System.out.println("#" + t + " " + sum);
        }
    }
}
Total
Today
Yesterday
최근에 올라온 글
«   2024/11   »
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