結果

問題 No.883 ぬりえ
ユーザー kohei2019kohei2019
提出日時 2022-05-04 23:55:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 621 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,828 KB
実行使用メモリ 87,048 KB
最終ジャッジ日時 2024-07-04 02:34:51
合計ジャッジ時間 2,467 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,120 KB
testcase_01 AC 35 ms
52,468 KB
testcase_02 AC 37 ms
53,792 KB
testcase_03 AC 35 ms
52,200 KB
testcase_04 AC 36 ms
53,132 KB
testcase_05 AC 36 ms
52,692 KB
testcase_06 AC 36 ms
53,228 KB
testcase_07 WA -
testcase_08 AC 37 ms
51,888 KB
testcase_09 WA -
testcase_10 AC 37 ms
52,000 KB
testcase_11 AC 38 ms
52,408 KB
testcase_12 AC 36 ms
52,936 KB
testcase_13 AC 37 ms
53,308 KB
testcase_14 AC 42 ms
60,400 KB
testcase_15 AC 135 ms
87,048 KB
testcase_16 AC 75 ms
80,428 KB
testcase_17 AC 64 ms
77,952 KB
testcase_18 AC 40 ms
59,460 KB
testcase_19 AC 39 ms
53,572 KB
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
def func(n,k):#縦横マス数,一列の最大
    return (n//k)*k*k + (n%k)**2

for i in range(1,N+1):
    if N <= func(i, K):
        M = i
        break
HW = [['.']*M for _ in range(M)]
cnt= 0
for p in range(0,M,K):
    for l in range(p,min(p+K,M)):
        for m in range(p,min(p+K,M)):
            if cnt == N:
                break
            HW[l][m] = '#'
            cnt += 1
for l in range((M//K)*K,M):
    for m in range((M//K)*K,M):
        if cnt == N:
            break
        HW[l][m] = '#'
        cnt += 1
print(M)
for i in range(M):
    print(*HW[i],sep='')
            
0