# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1219881 | islam_2010 | Arranging Shoes (IOI19_shoes) | C++20 | 0 ms | 0 KiB |
#include "shoes.h"
#include <bits/stdc++.h>
using namespace std;
int64_t count_swaps(vector<int> s){
int n = s.size()/2;
if(n==1){
if(s[0]<0){
return 1;
}
}return 0;
}