#include //typedef //-------------------------#include const double pi = 3.141592653589793238462643383279; using namespace std; //conversion //------------------------------------------ inline int toInt(string s) { int v; istringstream sin(s); sin >> v; return v; } template inline string toString(T x) { ostringstream sout; sout << x; return sout.str(); } inline int readInt() { int x; scanf("%d", &x); return x; } //typedef //------------------------------------------ typedef vector VI; typedef vector VVI; typedef vector VS; typedef pair PII; typedef pair PLL; typedef pair TIII; typedef long long LL; typedef unsigned long long ULL; typedef vector VLL; typedef vector VVLL; //container util //------------------------------------------ #define ALL(a) (a).begin(),(a).end() #define RALL(a) (a).rbegin(), (a).rend() #define PB push_back #define MP make_pair #define SZ(a) int((a).size()) #define SQ(a) ((a)*(a)) #define EACH(i,c) for(typeof((c).begin()) i=(c).begin(); i!=(c).end(); ++i) #define EXIST(s,e) ((s).find(e)!=(s).end()) #define SORT(c) sort((c).begin(),(c).end()) //repetition //------------------------------------------ #define FOR(i,s,n) for(int i=s;i<(int)n;++i) #define REP(i,n) FOR(i,0,n) #define MOD 1000000007 #define rep(i, a, b) for(int i = a; i < (b); ++i) #define trav(a, x) for(auto& a : x) #define all(x) x.begin(), x.end() #define sz(x) (int)(x).size() typedef long long ll; typedef pair pii; typedef vector vi; const double EPS = 1E-8; #define chmin(x,y) x=min(x,y) #define chmax(x,y) x=max(x,y) class UnionFind { public: vector par; vector siz; UnionFind(int sz_): par(sz_), siz(sz_, 1) { for (ll i = 0; i < sz_; ++i) par[i] = i; } void init(int sz_) { par.resize(sz_); siz.assign(sz_, 1LL); for (ll i = 0; i < sz_; ++i) par[i] = i; } int root(int x) { while (par[x] != x) { x = par[x] = par[par[x]]; } return x; } bool merge(int x, int y) { x = root(x); y = root(y); if (x == y) return false; if (siz[x] < siz[y]) swap(x, y); siz[x] += siz[y]; par[y] = x; return true; } bool issame(int x, int y) { return root(x) == root(y); } int size(int x) { return siz[root(x)]; } }; ll modPow(ll x, ll n, ll mod = MOD){ if(n <= 0) return 1; ll res = 1; while(n){ if(n&1) res = (res * x)%mod; res %= mod; x = x * x %mod; n >>= 1; } return res; } #define SIEVE_SIZE 5000000+10 bool sieve[SIEVE_SIZE]; void makeSieve(){ for(int i=0; i> Q; REP(q,Q){ int W, H, D; int Mx, My, Hx, Hy, Vx, Vy; cin >> W >> H >> D >> Mx >> My >> Hx >> Hy >> Vx >> Vy; int check[16][16]; REP(i,H)REP(j,W) check[i][j] = INT_MAX; check[Hy][Hx] = 0; bool ok = false; int nowy = Hy, nowx = Hx; D = min(D, 1000); while(D){ if(Vx != 0 && abs(Vy)%abs(Vx) == 0){ int d = abs(Vy)/abs(Vx); int ny = nowy, nx = nowx; for(int i=1; i<=abs(Vx); i++){ if(Vx >= 0){ nx = nx + 1; if(nx > W){ nx = W - (nx - W); Vx = -Vx; } }else{ nx = nx - 1; if(nx < 0){ nx = abs(nx); Vx = -Vx; } } if(Vy >= 0){ ny = ny + d; if(ny > H){ if((ny/H)%2 == 0){ ny = ny - (ny/H)*H; }else{ ny = H-ny%H; Vy = -Vy; } } }else{ ny = ny - d; if(ny < 0){ if(abs(ny)/H%2 == 0){ ny = abs(ny)%H; Vy = -Vy; }else{ ny = H-abs(ny)%H; } } } check[ny][nx] = min(check[nowy][nowx] + 1, check[ny][nx]); } nowx = nx, nowy = ny; }else{ int ny = nowy + Vy, nx = nowx + Vx; if(Vx >= 0){ if(nx > W){ if((nx/W)%2 == 0){ nx = nx - (nx/W)*W; }else{ nx = W-nx%W; Vx = -Vx; } } }else{ if(nx < 0){ if(abs(nx)/W%2 == 0){ nx = abs(nx)%W; Vx = -Vx; }else{ nx = W-abs(nx)%W; } } } if(Vy >= 0){ if(ny > H){ if((ny/H)%2 == 0){ ny = ny - (ny/H)*H; }else{ ny = H-ny%H; Vy = -Vy; } } }else{ if(ny <= 0){ if(abs(ny)/H%2 == 0){ ny = abs(ny)%H; Vy = -Vy; }else{ ny = H-abs(ny)%H; } } } check[ny][nx] = min(check[ny][nx], check[nowy][nowx] + 1); nowx = nx, nowy = ny; } //cout << nowy << " " << nowx << endl; D--; } if(check[My][Mx] != INT_MAX){ cout << "Hit" << endl; }else{ cout << "Miss" << endl; } } return 0; }