|
|
вернуться в форумWrong tests I think, test cases violates the condition. for example in input stream presents empty strings, or strings with other world except pinguins types. but in condition we can see that "In each of the next" and "which is one of the following: “Emperor Penguin,” “Little Penguin,” and “Macaroni Penguin.” " in russian Я думаю что проверочные тесты нарушают условия задачи например присутствуют пустые строки или слова отличные от видов пингвинов. Хотя в условии говорится что "В каждой из следующих n строк записано по одному виду пингвинов. Среди видов встречаются только «Emperor Penguin», «Little Penguin» и «Macaroni Penguin». " Re: Wrong tests This program says that the tests are correct. #include <cstdio> #include <string> using namespace std; string s, a[3] = {"Emperor Penguin", "Little Penguin", "Macaroni Penguin"}; char _s[100]; int n,c[3]; void getml() { int *a = new int[100000]; getml(); } int main() { scanf("%d", &n); gets(_s); if( _s[0] ) getml();; while(n--) { gets(_s); s = _s; for(int i=0;i<4;++i) { if( i == 3 ) getml(); if( a[i] == s ) { ++c[i]; break; } } } int m = 0; if( c[m] < c[1] ) m = 1; if( c[m] < c[2] ) m = 2; printf("%s",a[m].c_str()); return 0; } |
|
|