結果

問題 No.883 ぬりえ
ユーザー tcltktcltk
提出日時 2021-11-19 15:55:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 1,219 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 90,560 KB
最終ジャッジ日時 2024-06-09 22:45:45
合計ジャッジ時間 3,908 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
86,480 KB
testcase_01 AC 110 ms
86,464 KB
testcase_02 AC 136 ms
86,756 KB
testcase_03 AC 108 ms
86,452 KB
testcase_04 AC 107 ms
86,532 KB
testcase_05 AC 109 ms
86,812 KB
testcase_06 AC 112 ms
86,728 KB
testcase_07 AC 117 ms
86,480 KB
testcase_08 AC 109 ms
86,472 KB
testcase_09 AC 108 ms
86,820 KB
testcase_10 AC 108 ms
86,712 KB
testcase_11 AC 109 ms
86,760 KB
testcase_12 AC 109 ms
86,800 KB
testcase_13 AC 111 ms
86,692 KB
testcase_14 AC 109 ms
86,348 KB
testcase_15 AC 139 ms
90,560 KB
testcase_16 AC 125 ms
90,452 KB
testcase_17 AC 112 ms
86,880 KB
testcase_18 AC 111 ms
86,728 KB
testcase_19 AC 112 ms
86,884 KB
testcase_20 AC 114 ms
86,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)

# _INPUT = """13 3
# """
# sys.stdin = io.StringIO(_INPUT)

INF = 10**10


def solve(N, K):
    for M in range(1, INF):
        if M <= K:
            if N <= M*M:
                A = [['.'] * M for _ in range(M)]
                n = 0
                for i in range(M):
                    for j in range(M):
                        if n < N:
                            A[i][j] = '#'
                            n += 1
                return M, A
        else:
            if N <= K*M:
                A = [['.'] * M for _ in range(M)]
                n = 0
                j = 0
                for i in range(M):
                    for _ in range(K):
                        if n < N:
                            A[i][j] = '#'
                            j = (j + 1) % M
                            n += 1
                return M, A
    
    return None, None

N, K = map(int, input().split())
M, A = solve(N, K)

print(M)
for i in range(M):
    print(''.join(A[i]))
0