blob: 0c96fe8d7c0d52bf909aedcf102a4f456e6fd952 (
plain)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
package main
import (
"bufio"
"fmt"
"os"
)
type stack []byte
func (s *stack) push(b byte) {
*s = append(*s, b)
}
func (s *stack) pop() *byte {
l := len(*s)
if l == 0 {
return nil
} else {
elt := (*s)[l-1]
*s = (*s)[:l-1]
return &elt
}
}
func main() {
score := 0
s := make(stack, 0)
scanner := bufio.NewScanner(os.Stdin)
out:
for scanner.Scan() {
line := scanner.Text()
for i := 0; i < len(line); i++ {
c := line[i]
if c == '(' || c == '[' || c == '{' || c == '<' {
s.push(c)
continue
}
b := s.pop()
switch c {
case ')':
if *b != '(' {
score += 3
continue out
}
case ']':
if *b != '[' {
score += 57
continue out
}
case '}':
if *b != '{' {
score += 1197
continue out
}
case '>':
if *b != '<' {
score += 25137
continue out
}
}
}
}
fmt.Println(score)
}
|