46352023-03-30 13:28:25AGergoAranycipők (45)csharpAccepted 45/4530ms23200 KiB
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace cipok
{
    class Program
    {
        static void Main(string[] args)
        {

            int szam = int.Parse(Console.ReadLine());

            int legtobb = 0;
            int nyertesszam = 0;
            List<int> nyertesek = new List<int>();

            int akt = -1;

            for (int i = 0; i < szam; i++)
            {
                akt = int.Parse(Console.ReadLine());

                if (akt == legtobb)
                {
                    nyertesek.Add(i+1);
                    nyertesszam++;
                }
                else if (akt > legtobb)
                {
                    legtobb = akt;
                    nyertesek.Clear();

                    nyertesek.Add(i+1);
                    nyertesszam = 1;

                } 
            }

            Console.WriteLine(legtobb);
            Console.WriteLine(nyertesszam);
            foreach (var item in nyertesek)
            {
                Console.WriteLine(item);
            }

            Console.ReadKey();
        }
    }
}
SubtaskSumTestVerdictTimeMemory
base45/45
1Accepted0/028ms20244 KiB
2Accepted0/028ms20736 KiB
3Accepted3/328ms20776 KiB
4Accepted3/327ms21164 KiB
5Accepted3/327ms21264 KiB
6Accepted3/327ms21576 KiB
7Accepted3/327ms21740 KiB
8Accepted3/327ms22316 KiB
9Accepted3/327ms22776 KiB
10Accepted3/329ms22744 KiB
11Accepted3/328ms22692 KiB
12Accepted3/327ms22768 KiB
13Accepted3/328ms22684 KiB
14Accepted3/328ms22836 KiB
15Accepted3/328ms22900 KiB
16Accepted3/327ms22624 KiB
17Accepted3/330ms23200 KiB