結果

問題 No.883 ぬりえ
ユーザー はむ吉🐹はむ吉🐹
提出日時 2019-09-13 22:07:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,367 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,288 KB
最終ジャッジ日時 2024-07-04 09:44:02
合計ジャッジ時間 2,788 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
10,880 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 32 ms
10,880 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 WA -
testcase_08 AC 32 ms
10,880 KB
testcase_09 WA -
testcase_10 AC 31 ms
10,880 KB
testcase_11 AC 33 ms
11,008 KB
testcase_12 AC 33 ms
10,880 KB
testcase_13 AC 33 ms
11,008 KB
testcase_14 AC 167 ms
19,712 KB
testcase_15 AC 161 ms
28,288 KB
testcase_16 AC 162 ms
21,760 KB
testcase_17 AC 163 ms
20,480 KB
testcase_18 AC 116 ms
16,512 KB
testcase_19 AC 59 ms
12,672 KB
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3


import itertools
import math


def div_ceil(a, b):
    return (a + b - 1) // b


def sqrt_ceil(a):
    return math.ceil(math.sqrt(a) - 0.00001)


def trim(board):
    m = len(board)
    new_m = m
    for i in range(1, m)[::-1]:
        c1 = all(board[i][j] == "." for j in range(i))
        c2 = all(board[j][i] == "." for j in range(i))
        c3 = board[i][i] == "."
        if c1 and c2 and c3:
            new_m = i
        else:
            break
    new_board = [[board[j][i] for i in range(new_m)] for j in range(new_m)]
    return new_m, new_board


def construct(n, k):
    rest = n
    m = max(div_ceil(n, k), n)
    board = [["." for _ in range(m)] for _ in range(m)]
    for i in range(0, m, k):
        num_put = min(k * k, rest)
        rest -= num_put
        if num_put:
            size = sqrt_ceil(num_put)
        else:
            size = 0
        for dr, dc in itertools.product(range(size), repeat=2):
            r, c = i + dr, i + dc
            if 0 <= r < m and 0 <= c < m and num_put > 0:
                board[r][c] = "#"
                num_put -= 1
    new_m, new_board = trim(board)
    return new_m, new_board


def main():
    n, k = (int(z) for z in input().split())
    m, board = construct(n, k)
    print(m)
    print(*("".join(line) for line in board), sep="\n")


if __name__ == "__main__":
    main()
0