C# | 백준 | 8958
Algorithm 2019. 10. 11. 10:43반응형
https://www.acmicpc.net/problem/8958
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
31
32
33
34
35
36
37
38
39
40
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace _8958
{
class Program
{
static void Main(string[] args)
{
var length = int.Parse(Console.ReadLine());
string[] arr = new string[length];
for (int i = 0; i < length; i++) {
arr[i] = Console.ReadLine();
}
foreach (var str in arr) {
int score = 0;
int elapsedScore = 0;
//Console.WriteLine(str);
var arrChar = str.ToCharArray();
if (arrChar[i] == 'O')
{
score += 1;
}
else {
score = 0;
}
elapsedScore += score;
}
Console.WriteLine(elapsedScore);
}
}
}
}
|
반응형
'Algorithm' 카테고리의 다른 글
C# | 백준 | 2577 (0) | 2019.10.15 |
---|---|
C# | 백준 | 1546 (0) | 2019.10.15 |
C# | 백준 | 2920 (0) | 2019.10.10 |
프로그래머스 | 기지국 설치 (0) | 2019.09.06 |
프로그래머스 | 최소공배수 (0) | 2019.09.06 |