# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
910246 | Alphanumeric | Coreputer (IOI23_coreputer) | C++17 | 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 "coreputer.h"
std::vector<int> malfunctioning_cores(int N) {
int ans=run_diagnostic([0]);
if(ans==1) return {1,0};
if(ans==-1) return {0,1};
if(ans==0) return {1,1};
}