# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
15170 | 2015-07-12T03:12:33 Z | tonyjjw | 분배 (kriii3_Q) | C++ | 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; }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Too much output | 1000 ms | 1084 KB | Program timed out |
2 | Halted | 0 ms | 0 KB | - |