Adrian, Bruno, Goran 은 새를 사랑하는 모임(새사모)에 가입하고 싶어 한다. 그러나, 그들은 그들이 모두 입학 시험을 통과해야만 하는지 모른다. 시험은 N개의 질문으로 이루어져 있으며, 각각은 3개의 답안 A,B,C 로 이루어져 있다.
불행하게도, 그들은 새는 고래로부터 왔다고 말할 수 없기 때문에 // 걍 뻘소리, 그들은 정답을 추측하고 있다. 세 명의 아이들은 어떤 답안이 가장 효과적으로 돌아갈지에 관한 이론을 가지고 있다 :
Adrian 은 주장하기를 가장 좋은 수열은 A,B,C,A,B,C,A,B,C,A,B,C...라고 한다. Bruno 는 B,A,B,C,B,A,B,C,B,A,B,C....가 더 낫다고 하고 Goran 은 C,C,A,A,B,B,C,C,A,A,B,B 를 사용한다.
주어진 프로그램을 작성하고 누가 가장 많이 맞췄는지 알아내라.
Unfortunately, they couldn't tell a bird from a whale so they are trying to guess the correct answers. Each of the three boys has a theory of what set of answers will work best:
Adrian claims that the best sequence is: A, B, C, A, B, C, A, B, C, A, B, C ... Bruno is convinced that this is better: B, A, B, C, B, A, B, C, B, A, B, C ... Goran laughs at them and will use this sequence: C, C, A, A, B, B, C, C, A, A, B, B ...
Write a program that, given the correct answers to the exam, determines who of the three was right ? whose sequence contains the most correct answers.
input 5 BAACC output 3 Bruno input 9 AAAABBBBB output 4 Adrian Bruno Goran
출처:coci 2008/2009 contest1 2/6 번역: ConanKun