개발놀이터
2-7. 점수 계산 본문
package 배열1차원2차원.점수계산2다시7.my;
import java.util.Scanner;
public class Main {
/**
* 너무 쉬웠어서 피드백 할게 없다.
*/
public static void main(String[] args) {
Scanner kb = new Scanner(System.in);
int num = kb.nextInt();
int[] arr = new int[num];
for (int i = 0; i < num; i++) {
arr[i] = kb.nextInt();
}
System.out.println(solution(arr));
}
private static int solution(int[] arr) {
int answer = 0, cnt = 0;
for (int i = 0; i < arr.length; i++) {
if (arr[i] == 1) {
cnt++;
answer += cnt;
}
else {
cnt = 0;
}
}
return answer;
}
}
쉬운 문제이기 떄문에 피드백은 없음
'기타 > 코딩테스트' 카테고리의 다른 글
2-9 격자판 최대합 (0) | 2023.02.14 |
---|---|
2-8. 등수 구하기 (0) | 2023.02.14 |
2-6. 뒤집은 소수 (0) | 2023.02.14 |
2-5. 소수의 개수 (0) | 2023.02.14 |
2-4. 피보나치 수열 (0) | 2023.02.14 |