Submission #4267

#TimeUsernameProblemLanguageResultExecution timeMemory
4267dbfud줄 세우기 (KOI13_jul)C++98
Compilation error
0 ms0 KiB
#include <iostream> using namespace std; int main() { int numChild = 0 ; cin >> numChild ; vector<int> Child ; int child_data ; for( int i = 0; i < numChild ; i++ ) { cin >> child_data ; Child.push_back( child_data ) ; } int Count = 1; int Max = 0 ; for ( int i = 0; i < numChild ; i++ ) { if ( Child[i] < Child[i+1] ) Count++ ; else Count = 0 ; if ( Count > Max ) Max = Count ; } cout << numChild - Max ; return 0; }

Compilation message (stderr)

jul.cpp: In function 'int main()':
jul.cpp:9:5: error: 'vector' was not declared in this scope
jul.cpp:9:12: error: expected primary-expression before 'int'
jul.cpp:9:12: error: expected ';' before 'int'
jul.cpp:14:10: error: 'Child' was not declared in this scope
jul.cpp:22:14: error: 'Child' was not declared in this scope