Recent Posts
Notice
No Rules Rules
점수계산 (feat. 백준, 2506번) 본문
728x90
반응형
점수계산
https://www.acmicpc.net/problem/2506
// 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
반응형
'생활 > 코테' 카테고리의 다른 글
Networking (feat. 백준, 3803번) (0) | 2023.04.10 |
---|---|
회사에 있는 사람 (feat. 백준, 7785번) (0) | 2023.04.10 |
계보 복원가 호석 (feat. 백준, 21276번) (0) | 2023.04.06 |
2의 제곱인가? (feat. 백준, 11966번) (0) | 2023.04.06 |
중앙 이동 알고리즘 (feat. 백준, 2903번) (0) | 2023.04.05 |
Comments