이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
int main(void)
{
int NUM[50];
int res[50] = {0,};
int n;
scanf("%d", &n);
int i;
for(i = 0; i < n; i++)
scanf("%d", &NUM[i]);
int count = 0, from = 0, value;
while(count < n)
{
while(res[from] != 0)
{
from = (from+1)%n;
}
res[from] = NUM[count];
count++;
from = (res[from]+from) % n;
}
printf("%d\n", n);
for(i = 0; i < n; i++)
printf("%d ", res[i]);
return 0;
}
# | 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... |