80452024-01-12 11:26:00Leventusz09Tükörtojás (75 pont)csharpIdőlimit túllépés 45/75280ms22496 KiB
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tükörtojás{
    class Program{
        static void Main(){
            int N = int.Parse(Console.ReadLine());
            //s = true                    f= false
            string in1 = Console.ReadLine();
            bool[] S = new bool[N];

            string in2 = Console.ReadLine();
            bool[] S2 = new bool[N];

            for (int i = 0; i < N; i++) if (in1[i] == 'S')  S[i] = true;
            for (int i = 0; i < N; i++) if (in2[i] == 'S') S2[i] = true;

            int o1 = 0;

            for(int i=N-1; i>=0; i--){
                if(S[i] != S2[i]){
                    o1++;
                    for(int j=0; j<i; j++){
                        S[j] = !S[j];
                    }
                }
            }

            Console.WriteLine(o1);
        }
    }
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
base45/75
1Elfogadva0/027ms20296 KiB
2Időlimit túllépés0/0264ms4952 KiB
3Elfogadva5/525ms21132 KiB
4Elfogadva5/525ms21288 KiB
5Elfogadva5/525ms21752 KiB
6Elfogadva5/525ms21804 KiB
7Elfogadva5/525ms21484 KiB
8Elfogadva5/526ms22048 KiB
9Elfogadva5/526ms21740 KiB
10Elfogadva5/526ms22032 KiB
11Elfogadva5/527ms22496 KiB
12Időlimit túllépés0/5273ms7276 KiB
13Időlimit túllépés0/5272ms7472 KiB
14Időlimit túllépés0/5261ms7412 KiB
15Időlimit túllépés0/5268ms8076 KiB
16Időlimit túllépés0/5280ms8444 KiB
17Időlimit túllépés0/5256ms8408 KiB