No Rules Rules

점수계산 (feat. 백준, 2506번) 본문

생활/코테

점수계산 (feat. 백준, 2506번)

개발하는 완두콩 2023. 4. 7. 16:45
728x90
반응형

점수계산
https://www.acmicpc.net/problem/2506

 

2506번: 점수계산

OX 문제는 맞거나 틀린 두 경우의 답을 가지는 문제를 말한다. 여러 개의 OX 문제로 만들어진 시험에서 연속적으로 답을 맞히는 경우에는 가산점을 주기 위해서 다음과 같이 점수 계산을 하기로

www.acmicpc.net

 

// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main() {
	ios::sync_with_stdio(false), cin.tie(NULL);
    register int N, ans = 0, t = 0;
    cin >> N;
    for(register int n = 0, v; n < N; ++n){
        cin >> v;
        if(v == 1)
            ++t, ans += t;
        else
            t = 0;
    }
    cout << ans;
	return 0;
}
// *&)*@*

 

반응형

단순 연산 문제입니다.

728x90
반응형
Comments