結果

問題 No.883 ぬりえ
ユーザー kuuso1kuuso1
提出日時 2019-09-13 22:03:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 894 bytes
コンパイル時間 72 ms
コンパイル使用メモリ 10,768 KB
実行使用メモリ 16,184 KB
最終ジャッジ日時 2023-09-17 14:22:08
合計ジャッジ時間 1,953 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
8,208 KB
testcase_01 AC 16 ms
8,224 KB
testcase_02 AC 16 ms
7,840 KB
testcase_03 AC 16 ms
8,160 KB
testcase_04 AC 15 ms
8,228 KB
testcase_05 AC 16 ms
8,240 KB
testcase_06 AC 16 ms
8,180 KB
testcase_07 WA -
testcase_08 AC 15 ms
8,120 KB
testcase_09 WA -
testcase_10 AC 16 ms
8,276 KB
testcase_11 AC 15 ms
8,276 KB
testcase_12 AC 16 ms
8,220 KB
testcase_13 AC 16 ms
8,224 KB
testcase_14 AC 16 ms
8,092 KB
testcase_15 AC 51 ms
16,184 KB
testcase_16 AC 24 ms
10,252 KB
testcase_17 AC 21 ms
9,060 KB
testcase_18 AC 16 ms
8,276 KB
testcase_19 AC 16 ms
8,128 KB
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
##  input functions for me
def ria(sep = ''):
    if sep == '' :
        return list(map(int, input().split())) 
    else: return list(map(int, input().split(sep)))
def rsa(sep = ''):
    if sep == '' :
        return input().split() 
    else: return input().split(sep)
def ri(): return int(input())
def rd(): return float(input())
def rs(): return input()
##

## main ##
N, K = map(int, input().split())
M1 = N  // (K * K)
rest = N - M1 * K * K
M2 = 0
while True:
    if M2 * M2 >= rest: break
    M2 += 1
M = M1 * K + M2
ar = [['.'] * M for i in range(M)]
#print(M1,M2)
for k in range(M1):
    for i in range(K):
        for j in range(K):
            ar[k * K + i][k * K + j] = '#'
for i in range(M2):
    for j in range(M2):
        if rest == 0: break
        ar[M1 * K + i][M1 * K + j] = '#'
        rest -= 1
print(M)
for i in range(M):
    print("".join(ar[i]))

0