Submission #1690612


Source Code Expand

h, w = map(int, raw_input().split())
n = int(raw_input())
aa = map(int, raw_input().split())
p = dict()

for a in aa:
    if a in p:
        p[a] += a
    else:
        p[a] = a

b = [[None]*w]*h
print p

f = True
ks = set(p.keys())
for i in range(h):
    for j in range(w):
        c = ks[0]
        if f:
            b[i][w-j] = c
        else:
            b[i][j] = c
        p[c] -= 1
        if p[c] == 0:
            ks.remove(c)
    f = not f

for i in range(h):
    for j in range(w):
        print b[i][j],
    print

Submission Info

Submission Time
Task D - Grid Coloring
User ttlg
Language Python (2.7.6)
Score 0
Code Size 556 Byte
Status RE
Exec Time 16 ms
Memory 2820 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 400
Status
RE × 3
RE × 25
Set Name Test Cases
Sample 0_00.txt, 0_01.txt, 0_02.txt
All 0_00.txt, 0_01.txt, 0_02.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt, 1_04.txt, 1_05.txt, 1_06.txt, 1_07.txt, 1_08.txt, 1_09.txt, 1_10.txt, 1_11.txt, 1_12.txt, 1_13.txt, 1_14.txt, 1_15.txt, 1_16.txt, 1_17.txt, 1_18.txt, 1_19.txt, 1_20.txt, 1_21.txt
Case Name Status Exec Time Memory
0_00.txt RE 11 ms 2696 KB
0_01.txt RE 11 ms 2696 KB
0_02.txt RE 11 ms 2696 KB
1_00.txt RE 11 ms 2696 KB
1_01.txt RE 11 ms 2696 KB
1_02.txt RE 11 ms 2696 KB
1_03.txt RE 11 ms 2696 KB
1_04.txt RE 13 ms 2696 KB
1_05.txt RE 16 ms 2820 KB
1_06.txt RE 11 ms 2696 KB
1_07.txt RE 11 ms 2696 KB
1_08.txt RE 11 ms 2696 KB
1_09.txt RE 11 ms 2696 KB
1_10.txt RE 11 ms 2696 KB
1_11.txt RE 11 ms 2696 KB
1_12.txt RE 11 ms 2696 KB
1_13.txt RE 16 ms 2820 KB
1_14.txt RE 11 ms 2696 KB
1_15.txt RE 12 ms 2696 KB
1_16.txt RE 12 ms 2696 KB
1_17.txt RE 11 ms 2696 KB
1_18.txt RE 11 ms 2696 KB
1_19.txt RE 11 ms 2696 KB
1_20.txt RE 11 ms 2696 KB
1_21.txt RE 11 ms 2696 KB