Submission #982724

# Submission time Handle Problem Language Result Execution time Memory
982724 2024-05-14T16:41:40 Z vjudge1 Permutation (APIO22_perm) C++17
0 / 100
1 ms 344 KB
#include "perm.h"
#include <bits/stdc++.h>
#define rep(a,b,c) for(int a=b; a<c; a++)
#define repr(a,b,c) for(int a=b-1; a>c-1; a--)
#define repa(a,b) for(auto a:b)
#define fi first
#define se second
#define pii pair<int, int>
#define ll long long
#define pb push_back

using namespace std;

vector<int> construct_permutation(long long k){
	vector<int> ans;
	if(k<=90) repr(i,k,0) ans.pb(i);
	return ans;
}
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -