74492024-01-09 09:02:29NotYouAranycipők (45)csharpRészben helyes 36/4529ms23708 KiB
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace arany_cipok
{
    class Program
    {
        static void Main(string[] args)
        {
            int j = int.Parse(Console.ReadLine());
            int[] g = new int[j];
            int lg = 0;
            int a = 0;
            int[] s = new int[j];

            for (int i = 0; i < j; i++)
            {
                g[i] = int.Parse(Console.ReadLine());
                if (g[i]>lg)
                {
                    lg = g[i];
                }
            }

            for (int i = 0; i < j; i++)
            {
                if (lg == g[i])
                {
                    a++;
                    s[i] = i;
                }
            }
            Console.WriteLine(lg);
            Console.WriteLine(a);
            for (int i = 0; i < j; i++)
            {
                if (s[i] != 0)
                {
                    Console.WriteLine(s[i] +1);
                }
            }
            Console.ReadLine();
        }
    }
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
base36/45
1Elfogadva0/027ms20340 KiB
2Elfogadva0/026ms20920 KiB
3Részben helyes2/325ms20968 KiB
4Részben helyes2/325ms21520 KiB
5Elfogadva3/326ms22128 KiB
6Részben helyes2/326ms21960 KiB
7Elfogadva3/326ms22220 KiB
8Részben helyes2/325ms22148 KiB
9Elfogadva3/326ms22468 KiB
10Részben helyes2/329ms22820 KiB
11Elfogadva3/326ms23096 KiB
12Elfogadva3/327ms22764 KiB
13Részben helyes2/327ms23152 KiB
14Részben helyes2/328ms23692 KiB
15Részben helyes2/328ms23336 KiB
16Elfogadva3/328ms23708 KiB
17Részben helyes2/328ms23452 KiB