Submission #239376

# Submission time Handle Problem Language Result Execution time Memory
239376 2020-06-15T12:54:17 Z Sorting Secret Permutation (RMI19_permutation) C++14
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>
#include "permutationc.h"

using namespace std;

void solve(int n){
    vector<int> v{1, 2, 3};
    answer(v);
    exit(0);
}

Compilation message

permutation.cpp: In function 'void solve(int)':
permutation.cpp:8:13: error: cannot convert 'std::vector<int>' to 'int*' for argument '1' to 'void answer(int*)'
     answer(v);
             ^
stub.cpp: In function 'int query(int*)':
stub.cpp:15:9: warning: ignoring return value of 'int fscanf(FILE*, const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   fscanf(stdin, "%d", &x);
   ~~~~~~^~~~~~~~~~~~~~~~~
stub.cpp: In function 'int main(int, char**)':
stub.cpp:48:9: warning: ignoring return value of 'int fscanf(FILE*, const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   fscanf(stdin, "%d", &N);
   ~~~~~~^~~~~~~~~~~~~~~~~