結果

問題 No.883 ぬりえ
ユーザー rlangevinrlangevin
提出日時 2023-08-30 12:33:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 334 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 79,256 KB
最終ジャッジ日時 2024-06-10 12:35:18
合計ジャッジ時間 2,370 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,484 KB
testcase_01 AC 38 ms
53,472 KB
testcase_02 AC 38 ms
53,808 KB
testcase_03 AC 39 ms
52,832 KB
testcase_04 AC 38 ms
52,032 KB
testcase_05 AC 38 ms
52,824 KB
testcase_06 AC 38 ms
53,284 KB
testcase_07 AC 39 ms
52,616 KB
testcase_08 AC 40 ms
52,792 KB
testcase_09 AC 38 ms
52,212 KB
testcase_10 AC 40 ms
52,140 KB
testcase_11 AC 39 ms
52,064 KB
testcase_12 AC 39 ms
52,828 KB
testcase_13 AC 40 ms
52,444 KB
testcase_14 AC 45 ms
59,684 KB
testcase_15 AC 134 ms
79,256 KB
testcase_16 AC 79 ms
78,212 KB
testcase_17 AC 64 ms
77,084 KB
testcase_18 AC 43 ms
58,356 KB
testcase_19 AC 40 ms
54,332 KB
testcase_20 AC 39 ms
52,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
sq = 0
for i in range(100):
    if (sq + 1) ** 2 < N:
        sq += 1

M = max(sq + 1, (N + K - 1)//K)
cnt = 0
print(M)
for i in range(M):
    ans = ["."] * M
    for j in range(min(M, K)):
        if cnt == N:
            continue
        ans[(i + j)%M] = "#"
        cnt += 1
    print(*ans, sep="")
0