Problem | eatingparallelograms |
---|---|
User | Nayaa2403 |
Submission Time | 2025-06-20 13:59:27 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
eatingparallelograms.cpp:1:1: error: ‘include’ does not name a type
1 | include <bits/stdc++.h>
| ^~~~~~~
eatingparallelograms.cpp: In function ‘int main()’:
eatingparallelograms.cpp:5:1: error: ‘ios’ has not been declared
5 | ios::sync_with_stdio(0);
| ^~~
eatingparallelograms.cpp:6:1: error: ‘cin’ was not declared in this scope
6 | cin.tie(0);
| ^~~
eatingparallelograms.cpp:3:1: note: ‘std::cin’ is defined in header ‘<iostream>’; did you forget to ‘#include <iostream>’?
2 | #include <cstdlib>
+++ |+#include <iostream>
3 | using namespace std;
eatingparallelograms.cpp:11:1: error: ‘vector’ was not declared in this scope
11 | vector<long long, long long> arr[n];
| ^~~~~~
eatingparallelograms.cpp:3:1: note: ‘std::vector’ is defined in header ‘<vector>’; did you forget to ‘#include <vector>’?
2 | #include <cstdlib>
+++ |+#in