Submission #1100741

#TimeUsernameProblemLanguageResultExecution timeMemory
1100741Kirill22Costinland (info1cup19_costinland)C++17
49.99 / 100
2 ms764 KiB
#include "bits/stdc++.h" using namespace std; void solve() { long long k; cin >> k; int n = 500; vector<string> a(n, string(n, '.')); int x = 0, y = 0, cur = 0; while (1) { if (k >> cur & 1ll && (1ll << (cur + 1)) > k) { // x, y for (int i = 0; i <= y; i++) { a[x + 1][i] = 'r'; } for (int i = 0; i <= x; i++) { a[i][y + 1] = 'd'; } break; } a[x][y] = 'd'; if (k >> cur & 1ll) { a[x + 1][y] = 'X'; x++, y++; k -= (1ll << cur); continue; } a[x + 1][y] = 'X'; a[x + 2][y] = 'r'; a[x + 1][y + 1] = 'd'; x += 2, y += 1; cur++; } int N = 0, M = 0; for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { if (a[i][j] != '.') { N = max(N, i + 1); M = max(M, j + 1); } } } cout << N << " " << M << '\n'; for (int i = 0; i < N; i++) { for (int j = 0; j < M; j++) { cout << a[i][j]; } cout << '\n'; } }; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int t = 1; // cin >> t; while (t--) { solve(); } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...