結果

問題 No.883 ぬりえ
ユーザー NagisaNagisa
提出日時 2019-09-13 22:02:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 693 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 65,408 KB
最終ジャッジ日時 2024-07-04 09:42:15
合計ジャッジ時間 3,335 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,608 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 41 ms
52,352 KB
testcase_05 AC 40 ms
52,352 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 WA -
testcase_08 AC 40 ms
52,096 KB
testcase_09 WA -
testcase_10 AC 39 ms
52,096 KB
testcase_11 AC 41 ms
52,352 KB
testcase_12 RE -
testcase_13 AC 42 ms
52,096 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N, K = map(int,input().split())

b = N//(K*K)
r = N%(K*K)
G = [["." for k in range(10)] for l in range(10)]

for p in range(b):
    for x in range(K):
        for y in range(K):
            G[K*p+x][K*p+y] = "#"
if r == 0:
    print(K*b)
    for k in range(K*b):
        print("".join(G[k][:K*b]))
else:
    s = math.ceil(math.sqrt(r))
    c = 0
    for p in range(b,10000000):
        for x in range(s):
            for y in range(s):
                G[K*p+x][K*p+y] = "#"
                c += 1
                if c == r:
                    print(K*b+s)
                    for k in range(K*b+s):
                        print("".join(G[k][:K*b+s]))
                    exit(0)
0