80612024-01-12 11:44:58Leventusz09Tükörtojás (75 pont)csharpTime limit exceeded 45/75349ms22116 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());
            // = : true          != : false
            string in1 = Console.ReadLine();
            string in2 = Console.ReadLine();
            bool[] S = new bool[N];

            //bool[] S2 = new bool[N];

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

            int o1 = 0;

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

            Console.WriteLine(o1);
        }
    }
}
SubtaskSumTestVerdictTimeMemory
base45/75
1Accepted0/026ms20088 KiB
2Time limit exceeded0/0349ms4668 KiB
3Accepted5/526ms20744 KiB
4Accepted5/526ms21236 KiB
5Accepted5/526ms21116 KiB
6Accepted5/526ms21100 KiB
7Accepted5/526ms21484 KiB
8Accepted5/527ms21564 KiB
9Accepted5/527ms21528 KiB
10Accepted5/527ms22116 KiB
11Accepted5/528ms22072 KiB
12Time limit exceeded0/5300ms6896 KiB
13Time limit exceeded0/5261ms7176 KiB
14Time limit exceeded0/5268ms7140 KiB
15Time limit exceeded0/5277ms7008 KiB
16Time limit exceeded0/5272ms7220 KiB
17Time limit exceeded0/5259ms6992 KiB