# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1005082 | Nika533 | Costinland (info1cup19_costinland) | C++14 | 1 ms | 348 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.
#pragma gcc diagnostic "-std=c++1z"
#include <bits/stdc++.h>
#define int long long
#define pb push_back
#define f first
#define s second
#define MOD 1000000007
#define pii pair<int,int>
#define all(x) (x).begin(),(x).end()
#define allr(x) (x).rbegin(),(x).rend()
using namespace std;
int n,m,T,k;
void test_case() {
n=62; m=62;
cin>>k;
if (k<=19) {
n=6; m=6;
}
k--;
char arr[n+5][m+5];
for (int i=1; i<=n; i++) {
for (int j=1; j<=m; j++) {
arr[i][j]='.';
}
}
for (int i=1; i<=n-1; i++) arr[i][m]='d';
for (int i=1; i<=m-1; i++) arr[n][i]='r';
arr[1][1]='d'; arr[2][1]='X';
int p=0,k1=k;
while (k1) {
k1/=2; p++;
}
for (int i=2; i<=n; i++) {
for (int j=2; j<=m; j++) {
if ((i+j-2)<=p) arr[i][j]='X';
}
}
for (int i=p-2; i>=0; i--) {
if (k&(1ll<<i)) {
int ind=((p-2)-i)+3;
arr[ind][1]='X';
}
}
cout<<n<<" "<<m<<endl;
for (int i=1; i<=n; i++) {
for (int j=1; j<=m; j++) {
cout<<arr[i][j];
}
cout<<endl;
}
}
main () {
ios :: sync_with_stdio(0);
cin.tie(0); cout.tie(0);
T=1;
while (T--) test_case();
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |