#include int64_t calcGCD(int64_t a, int64_t b) { while (a) { b %= a; std::swap(a, b); } return b; } int main() { int N, M; int64_t K; char op; scanf("%d%d%lld %c", &N, &M, &K, &op); std::vector A(N), B(M); for (auto& e: B) scanf("%lld", &e); for (auto& e: A) scanf("%lld", &e); int64_t ans{}; if (op == '+') { std::map rest_a, rest_b; for (auto& e: A) rest_a[e % K]++; for (auto& e: B) rest_b[e % K]++; for (auto& e: rest_a) ans += e.second * rest_b[K - e.first]; ans += rest_a[0] * rest_b[0]; } else { std::vector div, count; div.reserve(10'000); for (int64_t i{1}; i * i <= K; i++) if (K % i == 0) { div.push_back(i); if (i * i != K) div.push_back(K / i); } std::sort(div.begin(), div.end()); count.resize(div.size()); for (auto& e: B) count[std::lower_bound(div.begin(), div.end(), K / calcGCD(e, K)) - div.begin()]++; for (int i{(int)div.size() - 1}; i >= 0; i--) for (int j{i + 1}; j < (int)div.size(); j++) if (div[j] % div[i] == 0) count[j] += count[i]; for (auto& e: A) ans += count[std::lower_bound(div.begin(), div.end(), calcGCD(e, K)) - div.begin()]; } printf("%lld\n", ans); return 0; }