#include #include #include #define llint long long using namespace std; llint h, w, k; char op; llint a[100005], b[100005]; map mpA, mpB; int main(void) { ios::sync_with_stdio(0); cin.tie(0); cin >> h >> w >> k; cin >> op; for(int i = 1; i <= w; i++) cin >> a[i]; for(int i = 1; i <= h; i++) cin >> b[i]; sort(a+1, a+w+1); for(int i = 1; i <= w; i++) mpA[a[i]%k]++; for(int i = 1; i <= h; i++) mpB[b[i]%k]++; if(op == '+'){ llint ans = 0; for(int i = 1; i <= h; i++){ ans += (a+w+1) - lower_bound(a+1, a+w+1, k-b[i]); } cout << ans << endl; return 0; } else{ llint ans = 0; for(int i = 1; i <= h; i++){ ans += (a+w+1) - lower_bound(a+1, a+w+1, (k+b[i]-1)/b[i]); } cout << ans << endl; return 0; } return 0; }