제출 #447845

#제출 시각아이디문제언어결과실행 시간메모리
447845MohamedAliSaidaneArranging Shoes (IOI19_shoes)C++14
10 / 100
25 ms3124 KiB
#include "shoes.h" #include<bits/stdc++.h> using namespace std; typedef long long ll; typedef vector<int> vi; typedef pair<int,int> pii; typedef vector<ll> vll; typedef pair<ll,ll> pll; #define pb push_back #define popb pop_back #define ff first #define ss second const ll MOD = 1e9 + 7; const ll INF = 1e18; ll count_swaps(vi s) { int n =s.size()/2; if(n == 1) { if(s[0] <= 0) return 0; else return 1; } return 1; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...