# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1219886 | islam_2010 | Arranging Shoes (IOI19_shoes) | C++20 | 0 ms | 0 KiB |
#include "shoes.h"
#include <bits/stdc++.h>
using namespace std;
int count_swaps(vector<int> s){
int n = s.size();
if(n==2){
if(s[0]<0){
return 1;
}
}return 0;
}