반응형
📖 문제
📃 코드
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
'Study & Project ✏️ > 알고리즘 📋' 카테고리의 다른 글
백준[JAVA] 10866.덱 - 자바 (2) | 2022.10.23 |
---|---|
백준[JAVA] 2164.카드2 - 자바 (0) | 2022.10.20 |
백준[JAVA] 1018.체스판 다시 칠하기 - 자바 (0) | 2022.10.17 |
백준[JAVA] 10845.큐 - 자바 (0) | 2022.10.17 |
백준[JAVA] 4153.직각삼각형- 자바 (0) | 2022.10.17 |