반응형
#include<iostream>
#include<string>
using namespace std;
int main() {
int Test_Case;
cin >> Test_Case;
for(int i = 0; i < Test_Case; i++) {
string temp;
cin >> temp;
int result = 0, right = 1;
for(int i = 0; i < (int)(temp.size()); i++) {
if(temp[i] == 'O') {
result += right;
right++;
} else {
right = 1;
}
}
cout << result << endl;
}
return 0;
}
반응형
'BaekJoon > C++' 카테고리의 다른 글
11720 : 숫자의 합 (C++) (0) | 2020.11.05 |
---|---|
11654 : 아스키 코드 (C++) (0) | 2020.11.05 |
4344 : 평균은 넘겠지 (C++) (0) | 2020.10.30 |
1110 : 더하기 사이클 (C++) (0) | 2020.10.29 |
10871 : X보다 작은 수 (C++) (0) | 2020.10.22 |
댓글