#include "grader.h"
#include <bits/stdc++.h>
#define pb push_back
using namespace std;
void solve(int N)
{
vector<int>v;
for(int i=1;i<N+1;i++)v.pb(i);
int x=query(v);
for(int i=1;i<N+1;i++)
{
for(int j=i+1;j<N+1;j++)
{
swap(v[i-1],v[j-1]);
int y=query(v);
if(x!=y+2)
{
swap(v[i-1],v[j-1]);
}
}
}
int z=query(v);
if(z!=N)while(1){z--;}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3073 ms |
364 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3073 ms |
364 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3073 ms |
364 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |