#include <iostream>
#include "grader.h"
using namespace std;
void solve(int n)
{
vector<int> q(n, 0);
vector<int> rez(n, 0);
for(int i = 1; i <= n; i++)
{
for(int j = 0; j < n; j++)
{
q[j] = i;
if(query(q) == 1)
{
rez[j] = i;
break;
}
q[j] = 0;
}
}
query(rez);
return;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
208 KB |
Execution killed with signal 13 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
208 KB |
Execution killed with signal 13 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
208 KB |
Execution killed with signal 13 |
2 |
Halted |
0 ms |
0 KB |
- |