for(test_case = 1; test_case <= T; ++test_case) {

// 이 부분에서 알고리즘 프로그램을 작성하십시오.

   int cnt;

        int N, total=0;


scanf("%d", &cnt);

        

        for(int i=0; i<cnt; i++){


scanf("%d", &N);

            total = N^total;


        }

        

// 이 부분에서 정답을 출력하십시오. Codeground 시스템에서는 C++ 에서도 printf 사용을 권장합니다. 

        printf("Case #%d\n", test_case);

printf("total %d\n", total);

        

}




왜 0점이지 잘만 되는데