# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
15172 | tonyjjw | 분배 (kriii3_Q) | C++98 | 5 ms | 1084 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<stdio.h>
int n,k;
int main(){
int i,j,p=0;
scanf("%d%d",&n,&k);
for(i=0;i<(1<<(k));i++){
for(j=0;j<(1<<(n-k-1));j++){
printf("%d %d ",p,(1<<n)-p-1);
p++;
}
printf("\n");
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |