# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1190818 | mayac | Coreputer (IOI23_coreputer) | C++20 | 0 ms | 0 KiB |
#include <iostream>
#include <vector>
#include <stack>
using namespace std;
vector<int> malfunctioning_cores(int N) {
int t = run_diagnostic({ 0 });
if (t == 1)return { 0 };
if (t == -1)return { 1 };
t= run_diagnostic({ 0 ,1});
if (t == 1)return { 0,1 };
return {};
}