# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
826705 | ZeroCool | Xor Sort (eJOI20_xorsort) | C++14 | 864 ms | 18364 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#define int long long
#define ll long long
#define ld long double
using namespace std;
const int mxn = 1005;
const int SQRT = 500;
const int inf = 1e18;
const int mod = 998244353;
const ld eps = 1e-9;
vector<pair<int,int> > res;
int A[mxn];
void xswap(int a,int b){
res.push_back({b,a});
res.push_back({a,b});
res.push_back({b,a});
swap(A[a], A[b]);
}
void solve(int T){
int n,s;
cin>>n>>s;
for(int i = 0;i<n;i++)cin>>A[i];
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |