結果
問題 | No.883 ぬりえ |
ユーザー | chocopuu |
提出日時 | 2019-09-14 18:11:25 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 953 bytes |
コンパイル時間 | 1,342 ms |
コンパイル使用メモリ | 171,688 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-06 06:33:25 |
合計ジャッジ時間 | 4,497 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
6,944 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 | RE | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | RE | - |
testcase_20 | WA | - |
ソースコード
#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; 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; } }