package main import ( "bufio" "fmt" "math" "os" "strconv" ) func exec(stdin *Stdin, stdout *Stdout) { n := stdin.ReadInt() m := stdin.ReadInt() k := stdin.ReadInt() op := stdin.Read() a := []int{} b := []int{} for i := 0; i < m; i++ { b = append(b, stdin.ReadInt()) } for i := 0; i < n; i++ { a = append(a, stdin.ReadInt()) } ans := 0 if op == "+" { c := map[int]int{} for i := 0; i < n; i++ { c[i] = Get(c, a[i]) + 1 } for i := 0; i < m; i++ { mod := b[i] % k if mod == 0 { ans += Get(c, 0) } else { ans += Get(c, k-mod) } } } else { c := map[int]int{} d := map[int]int{} for i := 0; i < n; i++ { gcd := Gcd(a[i], k) c[gcd] = Get(c, gcd) + 1 } for i := 0; i < m; i++ { gcd := Gcd(b[i], k) d[gcd] = Get(d, gcd) + 1 } for gcd1, v1 := range c { for gcd2, v2 := range d { if (gcd1*gcd2)%k == 0 { ans += v1 * v2 } } } } stdout.Println(ans) } func Get(d map[int]int, key int) int { if v, ok := d[key]; ok { return v } else { return 0 } } func Gcd(x, y int) int { if x < y { x, y = y, x } for y > 0 { x, y = y, x%y } return x } func main() { stdout := NewStdout() defer stdout.Flush() exec(NewStdin(bufio.ScanWords), stdout) } type Stdin struct { stdin *bufio.Scanner } func NewStdin(split bufio.SplitFunc) *Stdin { s := Stdin{bufio.NewScanner(os.Stdin)} s.stdin.Split(split) s.stdin.Buffer(make([]byte, bufio.MaxScanTokenSize), int(math.MaxInt32)) return &s } func (s *Stdin) Read() string { s.stdin.Scan() return s.stdin.Text() } func (s *Stdin) ReadInt() int { n, _ := strconv.Atoi(s.Read()) return n } func (s *Stdin) ReadFloat64() float64 { n, _ := strconv.ParseFloat(s.Read(), 64) return n } type Stdout struct { stdout *bufio.Writer } func NewStdout() *Stdout { return &Stdout{bufio.NewWriter(os.Stdout)} } func (s *Stdout) Flush() { s.stdout.Flush() } func (s *Stdout) Println(a ...interface{}) { fmt.Fprintln(s.stdout, a...) }