結果
問題 | No.883 ぬりえ |
ユーザー | Mayimg |
提出日時 | 2019-09-13 23:16:14 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 861 bytes |
コンパイル時間 | 2,014 ms |
コンパイル使用メモリ | 204,152 KB |
実行使用メモリ | 33,920 KB |
最終ジャッジ日時 | 2024-07-04 10:25:43 |
合計ジャッジ時間 | 5,244 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 64 ms
33,664 KB |
testcase_01 | AC | 65 ms
33,664 KB |
testcase_02 | AC | 64 ms
33,536 KB |
testcase_03 | AC | 64 ms
33,664 KB |
testcase_04 | AC | 64 ms
33,664 KB |
testcase_05 | WA | - |
testcase_06 | AC | 63 ms
33,664 KB |
testcase_07 | WA | - |
testcase_08 | AC | 65 ms
33,664 KB |
testcase_09 | WA | - |
testcase_10 | AC | 64 ms
33,664 KB |
testcase_11 | AC | 63 ms
33,536 KB |
testcase_12 | AC | 66 ms
33,664 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 72 ms
33,664 KB |
testcase_16 | AC | 66 ms
33,664 KB |
testcase_17 | AC | 65 ms
33,664 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
ソースコード
#define _USE_MATH_DEFINES #include <bits/stdc++.h> using namespace std; vector<vector<char>> ans(5555, vector<char>(5555, '.')); signed main() { ios::sync_with_stdio(false); cin.tie(0); int n, k; cin >> n >> k; int cur = 0; int row = 0, col = 0; while (cur < n) { int c = 1; while (c <= k && cur + c * c <= n) c++; c--; for (int i = 0; i < c; i++) { for (int j = 0; j < c; j++) { if (cur++ < n) ans[row + i][col + j] = '#'; } } row += c; col += c; } int x = 0, y = 0; for (int i = 0; i < 5555; i++) for (int j = 0; j < 5555; j++) { if (ans[i][j] == '#') { x = max(x, i); y = max(y, j); } } cout << max(x, y) + 1 << '\n'; for (int i = 0; i <= max(x, y); i++) { for (int j = 0; j <= max(x, y); j++) { cout << ans[i][j]; } cout << '\n'; } return 0; }