結果

問題 No.883 ぬりえ
ユーザー Alex WiceAlex Wice
提出日時 2019-09-13 21:45:22
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 418 bytes
コンパイル時間 1,509 ms
コンパイル使用メモリ 76,536 KB
実行使用メモリ 79,396 KB
最終ジャッジ日時 2024-07-04 04:05:49
合計ジャッジ時間 4,140 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
75,556 KB
testcase_01 AC 70 ms
75,544 KB
testcase_02 AC 70 ms
75,784 KB
testcase_03 AC 70 ms
75,416 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 72 ms
75,436 KB
testcase_08 AC 71 ms
75,436 KB
testcase_09 AC 72 ms
75,560 KB
testcase_10 WA -
testcase_11 AC 70 ms
75,836 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 98 ms
79,396 KB
testcase_16 AC 82 ms
78,232 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 72 ms
75,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

rr = raw_input
rri = lambda: int(raw_input())
rrm = lambda: map(int, raw_input().split())

def solve(tot, K):
    q, r = divmod(tot, K)
    N = q + (r > 0)
    ans = [['.'] * N for _ in xrange(N)]
    for r, row in enumerate(ans):
        for c in range(r, r+K):
            c %= N
            ans[r][c] = '#'
    return ans

ans = solve(*rrm())
print len(ans)
for row in ans:
    print "".join(row)
0