結果

問題 No.883 ぬりえ
ユーザー snrnsidysnrnsidy
提出日時 2021-06-04 00:19:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 12 ms / 2,000 ms
コード長 1,060 bytes
コンパイル時間 2,099 ms
コンパイル使用メモリ 200,964 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-28 19:31:10
合計ジャッジ時間 3,105 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h> 

using namespace std;

char board[1001][1001];
int main(void)
{
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    int N, K;

    cin >> N >> K;
    int k = K;
    K = min((int)sqrt(N), K);
    int M = ceil((N * 1.0) / K);
    //cout << K << ' ' << M << '\n';
    if ((M - 1)*k >= N && ((M-1)*(M-1) >= N))
    {
        M -= 1;
        K = M;
    }
    //M = max((int)(sqrt(N)), M);
    for (int i = 0; i < 1000; i++)
    {
        for (int j = 0; j < 1000; j++)
        {
            board[i][j] = '.';
        }
    }

    int num = N;

    for (int i = 0; i < M; i++)
    {
        int idx = i;
        idx %= M;
        for(int j=0;j<K;j++)
        {
            if (num > 0)
            {
                board[i][idx] = '#';
                num--;
                idx++;
                idx %= M;
            }
        }
    }

    cout << M << '\n';
    for (int i = 0; i < M; i++)
    {
        for (int j = 0; j < M; j++)
        {
            cout << board[i][j];
        }
        cout << '\n';
    }
    return 0;
}
0