結果
問題 | No.459 C-VS for yukicoder |
ユーザー | zimpha |
提出日時 | 2017-12-14 23:15:20 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 858 bytes |
コンパイル時間 | 924 ms |
コンパイル使用メモリ | 81,864 KB |
実行使用メモリ | 83,524 KB |
最終ジャッジ日時 | 2024-05-08 10:25:02 |
合計ジャッジ時間 | 13,231 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
53,088 KB |
testcase_01 | WA | - |
testcase_02 | AC | 40 ms
53,540 KB |
testcase_03 | AC | 39 ms
53,668 KB |
testcase_04 | AC | 41 ms
53,484 KB |
testcase_05 | AC | 40 ms
53,664 KB |
testcase_06 | WA | - |
testcase_07 | AC | 40 ms
52,600 KB |
testcase_08 | AC | 40 ms
53,564 KB |
testcase_09 | AC | 39 ms
52,988 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 40 ms
53,124 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 50 ms
63,148 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 132 ms
78,936 KB |
testcase_26 | AC | 142 ms
78,348 KB |
testcase_27 | AC | 118 ms
77,056 KB |
testcase_28 | AC | 131 ms
78,612 KB |
testcase_29 | WA | - |
testcase_30 | AC | 142 ms
78,396 KB |
testcase_31 | WA | - |
testcase_32 | AC | 56 ms
65,112 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 64 ms
67,944 KB |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | AC | 55 ms
66,136 KB |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | AC | 108 ms
76,968 KB |
testcase_47 | AC | 72 ms
72,672 KB |
testcase_48 | WA | - |
testcase_49 | AC | 59 ms
67,244 KB |
testcase_50 | WA | - |
testcase_51 | AC | 68 ms
71,348 KB |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | AC | 55 ms
65,976 KB |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | WA | - |
ソースコード
h, w, n = map(int, input().split()) s = [input() for i in range(h)] cnt = [0] * w for i in range(h): for j in range(w): cnt[j] += s[i][j] == '#' ret = [[0] * 3 for i in range(n)] empty = [False] * n cell = [[] for i in range(w)] for i in range(n): c = int(input()) cell[c].append(i) for i in range(w): cells = [] if i >= 2: cells.extend([(x, 2) for x in cell[i - 2]]) if i >= 1: cells.extend([(x, 1) for x in cell[i - 1]]) cells.extend([(x, 0) for x in cell[i]]) for x, y in cells: if not cnt[i]: break if empty[x]: ret[x][y] += 1 cnt[i] -= 1 for x, y in cells: r = min(cnt[i], 3 - ret[x][y]) ret[x][y] += r cnt[i] -= r for e in ret: r = [['.'] * 3 for i in range(3)] for i in range(3): for j in range(e[i]): r[j][i] = '#' for i in range(3): r[i] = ''.join(r[i]) print(*r, sep='\n')