Submission #2078685


Source Code Expand

using System;
using System.Linq;
using System.Collections.Generic;

public class Test
{
    public static void Main()
    {
        int[] hw = Console.ReadLine().Split().Select(int.Parse).ToArray();
        int n = int.Parse(Console.ReadLine());
        int[] a = Console.ReadLine().Split().Select(int.Parse).ToArray();
        List<int> res = new List<int>();
        for (int i = 0; i < a.Length; i++)
        {
            res.AddRange(Enumerable.Repeat(i + 1,a[i]));
        }
        for (int i = 0; i < hw[0]; i++)
        {
            int[] arr;
            if (i % 2 == 1) arr = res.Take(hw[1]).Reverse().ToArray();
            else arr = res.Take(hw[1]).ToArray();
            Console.WriteLine(string.Join(" ",arr));
            res.RemoveRange(0, hw[1]);
        }
    }
}

Submission Info

Submission Time
Task D - Grid Coloring
User keymoon
Language C# (Mono 4.6.2.0)
Score 400
Code Size 811 Byte
Status AC
Exec Time 34 ms
Memory 13792 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 400 / 400
Status
AC × 3
AC × 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 AC 29 ms 11604 KB
0_01.txt AC 27 ms 11348 KB
0_02.txt AC 27 ms 13396 KB
1_00.txt AC 26 ms 11348 KB
1_01.txt AC 26 ms 11348 KB
1_02.txt AC 27 ms 11348 KB
1_03.txt AC 30 ms 11460 KB
1_04.txt AC 32 ms 11500 KB
1_05.txt AC 34 ms 11744 KB
1_06.txt AC 30 ms 11460 KB
1_07.txt AC 27 ms 11348 KB
1_08.txt AC 27 ms 11348 KB
1_09.txt AC 27 ms 9300 KB
1_10.txt AC 26 ms 11348 KB
1_11.txt AC 26 ms 11348 KB
1_12.txt AC 27 ms 13396 KB
1_13.txt AC 34 ms 13792 KB
1_14.txt AC 27 ms 13396 KB
1_15.txt AC 27 ms 11348 KB
1_16.txt AC 26 ms 11348 KB
1_17.txt AC 29 ms 11400 KB
1_18.txt AC 27 ms 9408 KB
1_19.txt AC 27 ms 11328 KB
1_20.txt AC 27 ms 11348 KB
1_21.txt AC 27 ms 11348 KB