結果
問題 | No.883 ぬりえ |
ユーザー | kohei2019 |
提出日時 | 2022-05-06 11:57:26 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 153 ms / 2,000 ms |
コード長 | 518 bytes |
コンパイル時間 | 196 ms |
コンパイル使用メモリ | 82,276 KB |
実行使用メモリ | 87,632 KB |
最終ジャッジ日時 | 2024-07-05 13:54:54 |
合計ジャッジ時間 | 2,266 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 19 |
ソースコード
import heapq import math N,K = map(int,input().split()) M = max(-(-N//K),math.ceil(N**(1/2))) HW = [['.']*M for _ in range(M)] h = [] for i in range(M): h.append((0,i)) heapq.heapify(h) cnt = 0 for i in range(M): cnt0 = 0 while cnt0 < min(K,M): a,b = heapq.heappop(h) HW[i][b] = '#' heapq.heappush(h, (a+1,b)) cnt0 += 1 cnt += 1 if cnt == N: break if cnt == N: break print(M) for i in range(M): print(*HW[i],sep='')