結果
問題 | No.883 ぬりえ |
ユーザー | Alex Wice |
提出日時 | 2019-09-13 21:27:27 |
言語 | PyPy2 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 646 bytes |
コンパイル時間 | 1,352 ms |
コンパイル使用メモリ | 76,224 KB |
実行使用メモリ | 79,620 KB |
最終ジャッジ日時 | 2024-07-04 03:58:06 |
合計ジャッジ時間 | 3,799 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 81 ms
75,688 KB |
testcase_01 | AC | 80 ms
75,548 KB |
testcase_02 | AC | 77 ms
75,144 KB |
testcase_03 | AC | 79 ms
75,568 KB |
testcase_04 | AC | 76 ms
75,816 KB |
testcase_05 | AC | 81 ms
75,580 KB |
testcase_06 | AC | 79 ms
75,248 KB |
testcase_07 | WA | - |
testcase_08 | AC | 79 ms
75,532 KB |
testcase_09 | WA | - |
testcase_10 | AC | 76 ms
75,528 KB |
testcase_11 | AC | 74 ms
75,692 KB |
testcase_12 | AC | 75 ms
75,284 KB |
testcase_13 | AC | 76 ms
75,204 KB |
testcase_14 | AC | 82 ms
76,864 KB |
testcase_15 | AC | 119 ms
79,620 KB |
testcase_16 | AC | 93 ms
79,352 KB |
testcase_17 | AC | 88 ms
78,356 KB |
testcase_18 | AC | 76 ms
75,520 KB |
testcase_19 | AC | 78 ms
76,348 KB |
testcase_20 | WA | - |
ソースコード
rr = raw_input rri = lambda: int(raw_input()) rrm = lambda: map(int, raw_input().split()) def make(N, K, tot): otot = tot ans = [['.'] * N for _ in xrange(N)] for r, row in enumerate(ans): for c, v in enumerate(row): zr = r / K zc = c / K if zr == zc and tot: ans[r][c] = '#' tot -= 1 if tot: return make(N+1, K, otot) return ans def solve(tot, K): # tot - total #'s # K - max #'s per row/col q,r = divmod(tot, K) N = q + (r > 0) return make(N, K, tot) ans = solve(*rrm()) print len(ans) for row in ans: print "".join(row)