mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
441 B
35 lines
441 B
5 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
func solve(str string) int {
|
||
|
var count int = 0
|
||
|
var countC, countD int
|
||
|
for i := 0; i < len(str); i++ {
|
||
|
if str[i] == 'C' {
|
||
|
countC++
|
||
|
} else if str[i] == 'D' {
|
||
|
countD++
|
||
|
}
|
||
|
if countC == countD {
|
||
|
count++
|
||
|
countC = 0
|
||
|
countD = 0
|
||
|
}
|
||
|
}
|
||
|
return count
|
||
|
}
|
||
|
|
||
|
func main() {
|
||
|
args := os.Args[1:]
|
||
|
if len(args) != 1 {
|
||
|
fmt.Println()
|
||
|
return
|
||
|
}
|
||
|
result := solve(args[0])
|
||
|
fmt.Println(result)
|
||
|
}
|