Submission #15170

# Submission time Handle Problem Language Result Execution time Memory
15170 2015-07-12T03:12:33 Z tonyjjw 분배 (kriii3_Q) C++
0 / 24
1000 ms 1084 KB
#include<stdio.h>
int n,k;
int main(){
	int i,j,p=0;
	scanf("%d%d",&k,&n);
	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
1 Too much output 1000 ms 1084 KB Program timed out
2 Halted 0 ms 0 KB -