/ SeriousOJ /

Record Detail

Time Exceeded


  
# Status Time Cost Memory Cost
#1 Accepted 0ms 284.0 KiB
#2 Time Exceeded ≥2093ms ≥1.316 MiB
#3 Time Exceeded ≥2084ms ≥1.312 MiB
#4 Time Exceeded ≥2095ms ≥516.0 KiB
#5 Time Exceeded ≥2088ms ≥516.0 KiB
#6 Wrong Answer 1728ms 428.0 KiB
#7 Wrong Answer 179ms 428.0 KiB
#8 Wrong Answer 23ms 432.0 KiB
#9 Wrong Answer 11ms 320.0 KiB

Code

#include <stdio.h>

int main(){

    int x = 0, t;

    scanf("%d", &t);

    while(x < t){
        int n;

        scanf("%d", &n);
        char p[n+10];
        scanf("%s", &p);
        int count = 0;

        if(n <= 1){
            printf("%d\n", count);
        }

        if(n > 1){
            for(int i = 0; i < n/2; i++){
                for (int j = n-1; j >= n/2; j--){
                    if(i != j){
                        if(p[i] == p[j]){
                            count++;
                        }
                    }
                }
            }
            if(n % 2 == 0){
                printf("%d\n", count*2);
            }
            else{
                printf("%d\n", count*2 + 2);
            }
        }



        x++;
    }

    return 0;
}

Information

Submit By
Type
Submission
Problem
P1038 Do not touch my string
Contest
Brain Booster #3
Language
C99 (GCC 13.2.0)
Submit At
2024-05-06 17:03:57
Judged At
2024-10-03 13:49:14
Judged By
Score
10
Total Time
≥2095ms
Peak Memory
≥1.316 MiB