結果

問題 No.883 ぬりえ
ユーザー tcltktcltk
提出日時 2021-11-19 15:52:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 913 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 91,104 KB
最終ジャッジ日時 2024-06-09 22:41:24
合計ジャッジ時間 5,490 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
86,960 KB
testcase_01 AC 118 ms
87,060 KB
testcase_02 AC 119 ms
86,880 KB
testcase_03 AC 119 ms
86,664 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 118 ms
86,832 KB
testcase_07 AC 115 ms
87,336 KB
testcase_08 AC 115 ms
86,964 KB
testcase_09 AC 111 ms
87,040 KB
testcase_10 WA -
testcase_11 AC 112 ms
87,284 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 145 ms
91,104 KB
testcase_16 AC 124 ms
90,524 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 112 ms
87,008 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 = """20 4
# """
# 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)]
                return M, A
        else:
            if N <= K*M:
                A = [['.'] * M for _ in range(M)]
                j = 0
                for i in range(M):
                    for _ in range(K):
                        A[i][j] = '#'
                        j = (j + 1) % M
                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