結果
| 問題 | No.883 ぬりえ |
| コンテスト | |
| ユーザー |
risujiroh
|
| 提出日時 | 2019-09-13 21:31:02 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 4 ms / 2,000 ms |
| コード長 | 557 bytes |
| コンパイル時間 | 1,607 ms |
| コンパイル使用メモリ | 168,648 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-04 10:32:47 |
| 合計ジャッジ時間 | 2,599 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 19 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using lint = long long;
template<class T = int> using V = vector<T>;
template<class T = int> using VV = V< V<T> >;
int main() {
cin.tie(nullptr); ios::sync_with_stdio(false);
int m, k; cin >> m >> k;
int n = 1;
while (n * min(n, k) < m) ++n;
V<string> res(n, string(n, '.'));
for (int i = 0; i < n; ++i) {
for (int j = 0; j < min(n, k); ++j) {
if (m) {
res[i][(i + j) % n] = '#';
--m;
}
}
}
cout << n << '\n';
for (const auto& e : res) cout << e << '\n';
}
risujiroh