結果

問題 No.883 ぬりえ
ユーザー chocopuuchocopuu
提出日時 2019-09-14 18:21:39
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,011 bytes
コンパイル時間 2,123 ms
コンパイル使用メモリ 169,912 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-20 12:46:14
合計ジャッジ時間 4,781 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 2 ms
4,380 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
#define FOR(i, s, n) for (int i = (s); i < (int)(n); i++)
#define RFOR(i, s, n) for (int i = (n) - 1; i >= (int)(s); i--)
#define REP(i, n) FOR(i, 0, n)
#define RREP(i, n) RFOR(i, 0, n)
#define ALL(a) a.begin(), a.end()
constexpr long long INF = 1e18;
template<class T>inline bool CHMAX(T&a,T b){if(a<b){a=b;return true;}return false;}
template<class T>inline bool CHMIN(T&a,T b){if(a>b){a=b;return true;}return false;}



signed main(){
	int N,K;
	cin >> N >> K;
	int gridSize = (N+K-1)/K;
	vector<vector<char>>a(gridSize,vector<char>(gridSize,'.'));
	int cnt = N;
	for(int i = 0;i < gridSize;){
		for(int j = 0;j < gridSize;){
			REP(k,K){
				REP(l,K){
					if(cnt == 0)break;
					if(i+k>=gridSize)break;
					if(j+l>=gridSize)break;
					a[i+k][j+l] = '#';
					cnt--;
				}
			}
			i += K;
			j += K;
		}
	}
	cout << gridSize << endl;
	REP(i,gridSize){
		REP(j,gridSize){
			if(j)cout << " ";
			cout << a[i][j];
		}
		cout << endl;
	}
}
0