結果

問題 No.883 ぬりえ
ユーザー kuuso1kuuso1
提出日時 2019-09-13 22:11:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 894 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 70,272 KB
最終ジャッジ日時 2024-07-04 09:48:07
合計ジャッジ時間 2,436 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 WA -
testcase_08 AC 39 ms
51,968 KB
testcase_09 WA -
testcase_10 AC 40 ms
52,096 KB
testcase_11 AC 39 ms
52,608 KB
testcase_12 AC 39 ms
51,968 KB
testcase_13 AC 39 ms
51,712 KB
testcase_14 AC 40 ms
52,224 KB
testcase_15 AC 71 ms
70,272 KB
testcase_16 AC 47 ms
56,448 KB
testcase_17 AC 43 ms
54,016 KB
testcase_18 AC 40 ms
52,096 KB
testcase_19 AC 39 ms
52,480 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