| Problem | management |
|---|---|
| User | theRealLucasXD |
| Submission Time | 2025-05-25 17:24:01 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
management.cpp:1:2: error: invalid preprocessing directive #using
1 | #using <bits/stdc++.h>
| ^~~~~
management.cpp: In function ‘int main()’:
management.cpp:7:2: error: ‘cin’ was not declared in this scope
7 | cin << N;
| ^~~
management.cpp:1:1: note: ‘std::cin’ is defined in header ‘<iostream>’; did you forget to ‘#include <iostream>’?
+++ |+#include <iostream>
1 | #using <bits/stdc++.h>
management.cpp:8:2: error: ‘unordered_map’ was not declared in this scope
8 | unordered_map<int, int> worker = {{1, 0}};
| ^~~~~~~~~~~~~
management.cpp:1:1: note: ‘std::unordered_map’ is defined in header ‘<unordered_map>’; did you forget to ‘#include <unordered_map>’?
+++ |+#include <unordered_map>
1 | #using <bits/stdc++.h>
management.cpp:2:13: error: expected primary-expression before ‘long’
2 | #define int long long
|