Submission #977509

# Submission time Handle Problem Language Result Execution time Memory
977509 2024-05-08T05:59:57 Z Tsagana Permutation (APIO22_perm) C++17
10 / 100
467 ms 51232 KB
#include "perm.h"

//OP
#include<bits/stdc++.h>

#define IOS ios_base::sync_with_stdio(false);cin.tie();cout.tie();
#define all(x) x.begin(), x.end()
#define pi pair<int, int >
#define pq priority_queue
#define lb lower_bound
#define ub upper_bound
#define pb push_back
#define eb emplace_back
#define mset multiset
#define F first
#define S second

using namespace std;

vector<int> construct_permutation(long long k)
{
	vector<int> v; v.clear();
	for (int i = k-2; i >= 0; i--) {
		v.pb(i);
	}
	return v;
}
//ED
# Verdict Execution time Memory Grader output
1 Correct 1 ms 348 KB Output is correct
2 Correct 1 ms 344 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 1 ms 348 KB Output is correct
2 Correct 1 ms 344 KB Output is correct
3 Incorrect 467 ms 51232 KB Integer 39992 violates the range [1, 5000]
4 Halted 0 ms 0 KB -