Example #1
0
        public TAnswer Stub(TSample Sample)
        {
            TemplateProblemSample sample = Sample as TemplateProblemSample;

            return(new TemplateProblemAnswer()
            {
            });
        }
Example #2
0
        public override void CreateSamples(System.IO.StreamReader reader)
        {
            string[] nm = reader.ReadLine().Split(' ');
            Int32    n  = Convert.ToInt32(nm[0]);
            Int32    r  = Convert.ToInt32(nm[1]);

            TemplateProblemSample sample = new TemplateProblemSample()
            {
            };

            /*
             * sample.d = r;
             * sample.ex = Array.ConvertAll(reader.ReadLine().Split(' '), sTemp => Convert.ToInt32(sTemp));
             */
            Samples.Add(sample);
        }