#include #include using namespace std; int supoja_1[] = {1, 2, 3, 4, 5}; int supoja_2[] = {2, 1, 2, 3, 2, 4, 2, 5}; int supoja_3[] = {3, 3, 1, 1, 2, 2, 4, 4, 5, 5}; //1번 수포자 패턴 : 1, 2, 3, 4, 5 //2번 수포자 패턴 : 2, 1, 2, 3, 2, 4, 2, 5 //3번 수포자 패턴 : 3, 3, 1, 1, 2, 2, 4, 4, 5, 5 vector solution(vector answers) { vector answer; //인원별 정답 갯수 변수 int ans_1 = 0, ans_2 = 0, ans_3 = 0; //현재 문제번호 변수 int cur_num..