== Status == ||Memory||184K||Time||110MS|| ||||||||구현: 2시간, 입출력 및 디버깅:3시간|| == Source Code == {{{ #include int jolly(int A[], int val, int B[]); int bubbleSort(int A[], int n); int main() { int a[3001]={0}; int b[3001]={0}; int i,val,result; while(1){ scanf("%d",&val); if(feof(stdin)) break; for(i=0;i0?(A[j]-A[j+1]):-(A[j]-A[j+1])); } //두개의 값사이의 차를 B함수에 넣음. bubbleSort(B, val); if(B[0]!=1) return -100; for(j=0;j=1;i--){ for(j=0;jC[j+1]){ temp=C[j]; C[j]=C[j+1]; C[j+1]=temp; } } } return 0; } }}}