Cod sursa(job #637042)

Utilizator iulishorIulian Popescu iulishor Data 20 noiembrie 2011 10:45:50
Problema ChatNoir Scor 100
Compilator cpp Status done
Runda .com 2011 Marime 0.33 kb
#include <fstream>
#include <cmath>
using namespace std;
int t;
int main()
{
	ifstream fin("chatnoir.in");
	ofstream fout("chatnoir.out");
	fin>>t;
	for(;t;--t)
	{
		int x,y,n,m;
		fin>>n>>m>>x>>y;
		if(x-1<=4 || y-1<=4)
			fout<<"DA\n";
		else
			if(n-x<=4 || m-y<=4)
				fout<<"DA\n";
			else
				fout<<"NU\n";
	}
}