답안 #333400

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
333400 2020-12-05T20:43:49 Z blue 쌀 창고 (IOI11_ricehub) C++11
컴파일 오류
0 ms 0 KB
#include "ricehub.h"
#include <vector>

long long besthub(int R, int L, vector<int> X, long long B)
{
    return B;
}

Compilation message

ricehub.cpp:4:33: error: 'vector' has not been declared
    4 | long long besthub(int R, int L, vector<int> X, long long B)
      |                                 ^~~~~~
ricehub.cpp:4:39: error: expected ',' or '...' before '<' token
    4 | long long besthub(int R, int L, vector<int> X, long long B)
      |                                       ^
ricehub.cpp: In function 'long long int besthub(int, int, int)':
ricehub.cpp:6:12: error: 'B' was not declared in this scope
    6 |     return B;
      |            ^