| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 | 
|---|---|---|---|---|---|---|---|
| 1009335 | matere | Costinland (info1cup19_costinland) | C++14 | 1 ms | 348 KiB | 
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
long long k,n=64;
char a[65][65];
int main(){
    cin>>k;
    n=(int)log2(k)+2;
    // if(k<=19) n=5;
    if((1<<n-2) & k and !((1<<n-3) & k)) n--;
    cout<<n<<' '<<n<<endl;
    for(int i=1;i<=n;i++){
        for(int j=1;j<=n;j++){
            a[i][j]='r';
        }
    }
    for(int i=1;i<n;i++) a[i][n]='d';
    a[n][n]='.';
    //
    for(int i=1;(1ll<<i)<=k;i++){
        a[i][i]='X';
        a[i][i+1]='d';
        if((1ll<<(i-1))&k) a[i][i+1]='X';
    }
    //
    for(int i=1;i<=n;i++){
        for(int j=1;j<=n;j++){
            cout<<a[i][j];
        }
        cout<<endl;
    }
}
컴파일 시 표준 에러 (stderr) 메시지
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
