# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
15243 | ttgame | 분배 (kriii3_Q) | C++98 | 0 ms | 1716 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 <iostream>
#include <cstring>
using namespace std;
int main(void)
{
int N=1;
int K=1;
int Z=1;
cin >> N >> K;
Z = (1 << (N - K));
N = (1 << N);
K = (1 << K);
for (int i = 0; i < K; i++)
{
for (int j = 0; j < Z; j++)
{
if (j % 2 == 0)
{
int n = (j / 2) * 4 + i;
cout << n<<" ";
}
else
{
int q = ((j + 1) / 2) * 4 - 1 - i;
cout << q<<" ";
}
}
cout << endl;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |