Cod sursa(job #2049257)
Utilizator | Data | 26 octombrie 2017 23:35:34 | |
---|---|---|---|
Problema | Jocul NIM | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva educationala | Marime | 0.37 kb |
#include <fstream>
using namespace std;
ifstream fin("nim.in");
ofstream fout("nim.out");
int main()
{
long long t,x,n,sol=0;
fin>>t;
while(t)
{
fin>>n;
for(; n; n--)
{
fin>>x;
sol^=x;
}
if(sol==0) fout<<"NU\n";
else fout<<"DA\n";
--t;
}
return 0;
}