| Problem | eelimination |
|---|---|
| User | yoshiokalili |
| Submission Time | 2026-02-14 23:15:37 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
eelimination.cpp:2:1: error: ‘include’ does not name a type
2 | include "bits/stdcc++.h"
| ^~~~~~~
eelimination.cpp: In function ‘int main()’:
eelimination.cpp:6:5: error: ‘ios_base’ has not been declared
6 | ios_base::sync_with_stdio(0);
| ^~~~~~~~
eelimination.cpp:7:5: error: ‘cin’ was not declared in this scope
7 | cin.tie(nullptr);
| ^~~
eelimination.cpp:19:5: error: ‘stack’ was not declared in this scope
19 | stack<int> st;
| ^~~~~
eelimination.cpp:19:11: error: expected primary-expression before ‘int’
19 | stack<int> st;
| ^~~
eelimination.cpp:21:11: error: ‘st’ was not declared in this scope; did you mean ‘std’?
21 | while (!st.empty && arr[st.top()] < arr[i]) {
| ^~
| std
eelimination.cpp:25:3: error: ‘st’ was not declared in this scope; did you mean ‘std’?
25 | st.push();