# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
826705 | ZeroCool | Xor Sort (eJOI20_xorsort) | C++14 | 864 ms | 18364 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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... |