80482024-01-12 11:28:01Leventusz09Tükörtojás (75 pont)csharpTime limit exceeded 45/75349ms22480 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;
                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);
        }
    }
}
SubtaskSumTestVerdictTimeMemory
base45/75
1Accepted0/026ms20044 KiB
2Time limit exceeded0/0252ms4796 KiB
3Accepted5/525ms20644 KiB
4Accepted5/525ms20408 KiB
5Accepted5/525ms20992 KiB
6Accepted5/525ms21432 KiB
7Accepted5/527ms21800 KiB
8Accepted5/526ms22008 KiB
9Accepted5/528ms22112 KiB
10Accepted5/526ms22480 KiB
11Accepted5/526ms22376 KiB
12Time limit exceeded0/5266ms7156 KiB
13Time limit exceeded0/5275ms7308 KiB
14Time limit exceeded0/5280ms7428 KiB
15Time limit exceeded0/5349ms7236 KiB
16Time limit exceeded0/5268ms7392 KiB
17Time limit exceeded0/5256ms7388 KiB