UpDown Dev Story
알고리즘 연습 - 점수계산 본문
아래 강의를 보면서 연습하고 기록하고 있습니다
문제
소스코드
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int inputInt = sc.nextInt(); // 숫자 입력받음
int[] inputArr = new int[inputInt];
int score = 0;
int preScore = 0;
for (int i = 0; i < inputInt; i++) { // for loop 돌면서 숫자들 배열에 넣는다
inputArr[i] = sc.nextInt();
if (inputArr[i] == 1) { // 숫자가 1이면 preScore 누적
preScore++;
} else { // 아니면 preScore 초기화
preScore = 0;
}
score = score + preScore; // 누적된 값으로 총 score 누적
}
System.out.println(score);
}
}
'Algorithm' 카테고리의 다른 글
알고리즘 연습 - 격자판 최대합 (0) | 2021.05.31 |
---|---|
알고리즘 연습 - 등수구하기 (0) | 2021.05.26 |
알고리즘 연습 - 뒤집은 소수 (0) | 2021.05.26 |
알고리즘 연습 - 소수(에라토스테네스 체) (0) | 2021.05.26 |
알고리즘 연습 - 피보나치 수열 (0) | 2021.05.26 |
Comments