#include using namespace std; void fast_io() { ios::sync_with_stdio(false); std::cin.tie(nullptr); } int main() { fast_io(); int t; cin >> t; for (; t--;) { int d; long long a; cin >> d >> a; for (int i = 0; i < d; i++) { long long x; cin >> x; cout << (x + (a + 1) / 2) / a << (i + 1 == d ? "\n" : " "); } } }