티스토리 뷰
문제
풀이
package main
import (
"bufio"
"fmt"
"os"
"strings"
)
func main() {
var word string
reader := bufio.NewReader(os.Stdin)
fmt.Fscanln(reader, &word)
word = strings.Replace(word, "c=", "!", -1)
word = strings.Replace(word, "c-", "@", -1)
word = strings.Replace(word, "dz=", "#", -1)
word = strings.Replace(word, "d-", "$", -1)
word = strings.Replace(word, "lj", "%", -1)
word = strings.Replace(word, "nj", "^", -1)
word = strings.Replace(word, "s=", "&", -1)
word = strings.Replace(word, "z=", "*", -1)
var alphabets []string
for i := 0; i < len(word); i++ {
alphabets = append(alphabets, string(word[i]))
}
fmt.Println(len(alphabets))
}
728x90
'dev > algorithm' 카테고리의 다른 글
BOJ / 1712번 / 손익분기점 [Golang] (0) | 2020.04.29 |
---|---|
BOJ / 1316번 / 그룹 단어 체커 [Golang] (4) | 2020.04.28 |
BOJ / 5622번 / 다이얼 [Golang] (1) | 2020.04.26 |
BOJ / 2908번 / 상수 [Golang] (0) | 2020.04.25 |
BOJ / 1152번 / 단어의 개수[Golang] (0) | 2020.04.24 |
댓글