Problem competition
User ForsakenPBJ
Submission Time 2024-12-18 19:15:40
Score 0
Max Time N/A
Max Memory N/A

Compile Error

competition.cpp: In function ‘int main()’:
competition.cpp:3:5: error: ‘vector’ was not declared in this scope
3 | vector<int> phy;
| ^~~~~~
competition.cpp:3:12: error: expected primary-expression before ‘int’
3 | vector<int> phy;
| ^~~
competition.cpp:4:5: error: ‘cin’ was not declared in this scope
4 | cin >> N >> a >> b;
| ^~~
competition.cpp:8:9: error: ‘phy’ was not declared in this scope
8 | phy.push_back(physcore);
| ^~~
competition.cpp:10:7: error: ‘phy’ was not declared in this scope
10 | sort(phy.begin(), phy.end());
| ^~~
competition.cpp:10:2: error: ‘sort’ was not declared in this scope; did you mean ‘short’?
10 | sort(phy.begin(), phy.end());
| ^~~~
| short
competition.cpp:14:2: error: ‘cout’ was not declared in this scope
14 | cout << total;