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

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

Scanner sc_cnt = new Scanner(System.in);

int total = 0;

int cnt = sc_cnt.nextInt();


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

Scanner sc_num = new Scanner(System.in);

if(i == 0){

total = sc_num.nextInt();

}

else{

total=total^sc_num.nextInt();

}

}

System.out.println(total);

이렇게 썻는데 왜 런타임 오류가 되는지 모르겠어요 ㅠㅠ