답안 #369566

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
369566 2021-02-21T21:45:06 Z sad Mouse (info1cup19_mouse) C++14
0 / 100
1 ms 364 KB
#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=0;i<N;i++)
    {
        for(int j=i+1;j<N;j++)
        {
            swap(v[i],v[j]);
            int y=query(v);
            if((x+1)!=y)
            {
                swap(v[i],v[j]);
            }
            else x=y;
        }
    }
    query(v);return;

}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 364 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 364 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 364 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -