# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
889069 | Lincito_31 | Arranging Shoes (IOI19_shoes) | C++14 | 1090 ms | 4372 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "shoes.h"
using namespace std;
long long x=0;
long long count_swaps(vector<int> s) {
string xd="";
int tam=s.size();
for(int i=0;i<tam;i++){
if(s[i]>0){
xd=xd+"+";
}else{
xd=xd+"-";
}
}
while(xd.find('+')!=-1){
int i=0;
while(xd[i]!='-'){
i++;
}
x+=i;
xd.replace(i,1,"");
i=0;
while(xd[i]!='+'){
i++;
}
x+=i;
xd.replace(i,1,"");
}
return x;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |