[백준 8958] OX퀴즈 (C#, C++) - soo:bak
작성일 :
문제 링크
설명
각 테스트 케이스마다 문자열을 입력으로 받고,
O
문자가 연속으로 나타날 때마다 +1
씩 증가하는 점수를 합산하는 문제입니다.
만약, 중간에 X
문자가 나타나면, 증가하는 점수를 0
으로 초기화 합니다.
Code
[ C# ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
namespace Solution {
class Program {
static void Main(string[] args) {
var n = int.Parse(Console.ReadLine()!);
for (int i = 0; i < n; i++) {
var str = Console.ReadLine()!;
int score = 0, total = 0;
foreach (var c in str) {
if (c == 'O') {
score++;
total += score;
} else score = 0;
}
Console.WriteLine(total);
}
}
}
}
[ C++ ]
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
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n; cin >> n;
for (int i = 0; i < n; i++) {
string str; cin >> str;
int score = 0, total = 0;
for (char c : str) {
if (c == 'O') {
score++;
total += score;
} else score = 0;
}
cout << total << "\n";
}
return 0;
}