# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1238194 | ayathk | Arranging Shoes (IOI19_shoes) | C++20 | 0 ms | 0 KiB |
#include <bits/stdc++.h>
using namespace std;
#define fi first
#define se second
#define all(a) a.begin(),a.end()
#define pb push_back
const int maxn = 2e5+1;
int64 count_swaps(vector <int> s){
if(s[0] > s[1])return 1;
return 0;
}