fork(2) download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. public class Test
  6. {
  7. public static void Main()
  8. {
  9. SelectEvenly(100,53);
  10. SelectEvenly(5,3);
  11. }
  12.  
  13. public static void SelectEvenly(int n, double k)
  14. {
  15.  
  16. List<int> myList = Enumerable.Range(0, n).ToList();
  17.  
  18. List<int> solutions=new List<int>();
  19. for (int i=1;i<=k;i++)
  20. {
  21. solutions.Add(myList[(int)Math.Floor(i*(n/k)-1)]);
  22. }
  23.  
  24. Console.WriteLine(solutions.Count);
  25. Console.WriteLine(string.Join(", ", solutions));
  26. }
  27. }
Success #stdin #stdout 0s 131200KB
stdin
Standard input is empty
stdout
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