Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- inflearn
- 제프리리처
- Operating System.
- BOJ
- 운영체제
- FIFO paging
- n타일링2
- redis
- 열혈 TCP/IP 소켓 프로그래밍
- 10026번
- 윤성우 저자
- 스프링 입문
- 스프링 핵심 원리
- OS
- 우아한 테크 세미나
- 이펙티브코틀린
- 열혈 tcp/ip 프로그래밍
- HTTP
- 김영한
- 우아한레디스
- C#
- 에러핸들링
- Window-Via-c/c++
- 2475번
- Spring
- TCP/IP
- C++
- Operating System
- Four Squares
- 토마토
Archives
- Today
- Total
나의 브을로오그으
[c++] 8958번 : OX퀴즈 본문
https://www.acmicpc.net/problem/8958
#include <iostream>
#include <string>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
char str[80] = { 0, };
int nTestCase = 0;
cin >> nTestCase;
for (int i = 0; i < nTestCase; ++i)
{
cin >> str;
int nAcc = 0;
int nScore = 0;
int ndx = 0;
while (str[ndx] != '\0')
{
if (str[ndx] == 'O')
{
++nScore;
nAcc += nScore;
}
else
{
nScore = 0;
}
++ndx;
}
cout << nAcc << "\n";
}
return 0;
}
'알고리즘 > BaekJoon' 카테고리의 다른 글
[c++] 10171번 : 고양이 (0) | 2022.03.12 |
---|---|
[c++] 9498번 : 시험 성적 (0) | 2022.03.12 |
[c++] 3052번 : 나머지 (0) | 2022.03.12 |
[c++] 2908번 : 상수 (0) | 2022.03.11 |
[c++] 2884번 : 알람 시계 (0) | 2022.03.11 |