# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1005079 | Nika533 | Costinland (info1cup19_costinland) | C++14 | 1 ms | 604 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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=6; m=6;
cin>>k; 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();
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |