using System; using System.Collections.Generic; using System.Linq; using System.Numerics; namespace yukicoder { public class Program { public static void Main() { var q = int.Parse(Console.ReadLine()); var n = new int[q]; for(var i = 0; i < q; i++) { n[i] = int.Parse(Console.ReadLine()); } var m = n.Max(); var a = new int[m]; if (m > 3) { a[3] = 1; if(m > 4) { for (var i = 4; i < m; i++) { a[i] = (a[i - 1] + a[i - 2] + a[i - 3] + a[i - 4]) % 17; } } } foreach(var i in n) { Console.WriteLine(a[i-1]); } } } }