Study & Project ✏️/알고리즘 📋

백준[JAVA] 10773.제로 - 자바

JM 2022. 10. 20. 19:00
반응형

📖 문제

📃 코드

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
    static int arr[];
    static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    public static void main(String[] args) throws IOException {
        
        int N = Integer.parseInt(br.readLine());
        arr = new int[N];
        zero(N);
        int sum = 0;
        for(int num : arr){
            sum += num;
        }
        System.out.println(sum);
    }

    private static void zero(int n) throws IOException{
        int index = 0;
        while(n>0){
            int num = Integer.parseInt(br.readLine());
            if(num != 0){
                arr[index] = num;
                index++;
            }else {
                arr[index-1] = 0;
                index--;
            }
            n--;
        }
    }
}

🔗 링크

https://www.acmicpc.net/problem/10773

 

10773번: 제로

첫 번째 줄에 정수 K가 주어진다. (1 ≤ K ≤ 100,000) 이후 K개의 줄에 정수가 1개씩 주어진다. 정수는 0에서 1,000,000 사이의 값을 가지며, 정수가 "0" 일 경우에는 가장 최근에 쓴 수를 지우고, 아닐 경

www.acmicpc.net