# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
369551 |
2021-02-21T21:16:07 Z |
sad |
Mouse (info1cup19_mouse) |
C++14 |
|
1 ms |
492 KB |
#include <bits/stdc++.h>
//#include "grader.h"
#define pb push_back
using namespace std;
int query(vector<int> v);
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+2!=y)
{
swap(v[i-1],v[j-1]);
}
}
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
492 KB |
Unexpected end of file - int32 expected |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
492 KB |
Unexpected end of file - int32 expected |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
492 KB |
Unexpected end of file - int32 expected |
2 |
Halted |
0 ms |
0 KB |
- |