[BOJ] 10773 제로

핍삐삐로·2024년 7월 22일
0

BOJ

목록 보기
9/19

#include <iostream>
#include <stack>

int main() {
    int command_count, sum = 0;
    std::stack<int> pc;
    
    std::cin >> command_count;

    for (int i = 0; i < command_count; i++) {
        int a;
        std::cin >> a;
        if (a == 0 && !pc.empty()) {
            pc.pop();
        } else {
            pc.push(a);
        }
    }

    while (!pc.empty()) {
        sum += pc.top();
        pc.pop();
    }

    std::cout << sum << std::endl;
    return 0;
}
profile
선린인터넷고등학교 119th

0개의 댓글