| Problem | jaydenscurve |
|---|---|
| User | lad |
| Submission Time | 2026-06-26 15:28:25 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
jaydenscurve.cpp:1:1: error: ‘include’ does not name a type
1 | include <bits/stdc++.h>
| ^~~~~~~
jaydenscurve.cpp: In function ‘int main()’:
jaydenscurve.cpp:6:15: error: ‘cin’ was not declared in this scope
6 | int r, c; cin >> r >> c;
| ^~~
jaydenscurve.cpp:7:5: error: ‘vector’ was not declared in this scope
7 | vector<vector<string>> grid(r, vector<string>(c));
| ^~~~~~
jaydenscurve.cpp:7:19: error: ‘string’ was not declared in this scope
7 | vector<vector<string>> grid(r, vector<string>(c));
| ^~~~~~
jaydenscurve.cpp:7:28: error: ‘grid’ was not declared in this scope
7 | vector<vector<string>> grid(r, vector<string>(c));
| ^~~~
jaydenscurve.cpp:17:13: error: ‘cout’ was not declared in this scope
17 | cout << grid