using System; using System.Collections.Generic; using System.Linq; public class Test { public static void Main() { SelectEvenly(100,53); SelectEvenly(5,3); } public static void SelectEvenly(int n, double k) { List<int> myList = Enumerable.Range(0, n).ToList(); List<int> solutions=new List<int>(); for (int i=1;i<=k;i++) { solutions.Add(myList[(int)Math.Floor(i*(n/k)-1)]); } Console.WriteLine(solutions.Count); Console.WriteLine(string.Join(", ", solutions)); } }
Standard input is empty
53 0, 2, 4, 6, 8, 10, 12, 14, 15, 17, 19, 21, 23, 25, 27, 29, 31, 32, 34, 36, 38, 40, 42, 44, 46, 48, 49, 51, 53, 55, 57, 59, 61, 63, 65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 83, 85, 87, 89, 91, 93, 95, 97, 99 3 0, 2, 4