# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
200454 | mohamedsobhi777 | Martian DNA (IOI16_dna) | C++14 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "dna.h"
#include <bits/stdc++.h>
std::string analyse(int n, int t) {
string ret = "";
for(int i = 0;i<(1<<n);i++)
{
string s;
for(int j = 0;j<n;j++)
{
s+=char( (i>>j) + '0');
}
if( make_test(s) ==n )
{
return s;
}
}
}