結果

問題 No.883 ぬりえ
ユーザー vwxyzvwxyz
提出日時 2023-07-15 04:47:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 303 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-09-16 13:17:21
合計ジャッジ時間 2,787 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 29 ms
10,496 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 28 ms
10,496 KB
testcase_11 AC 27 ms
10,624 KB
testcase_12 AC 29 ms
10,496 KB
testcase_13 AC 27 ms
10,624 KB
testcase_14 WA -
testcase_15 AC 413 ms
18,688 KB
testcase_16 AC 124 ms
12,672 KB
testcase_17 AC 70 ms
11,520 KB
testcase_18 AC 28 ms
10,752 KB
testcase_19 WA -
testcase_20 AC 28 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

N,K=map(int,readline().split())
H=max((N+K-1)//K,int((N-1)**.5)+1)
ans_lst=[["."]*H for h in range(H)]
for i in range(H):
    for j in range(i,i+K):
        if N:
            ans_lst[i][j%H]="#"
            N-=1
print(H)
for ans in ans_lst:
    print(*ans,sep="")
0