Problem skyscraper_apio15
User beepbeepsheep
Submission Time 2024-12-07 13:17:43
Score 0
Max Time N/A
Max Memory N/A

Compile Error

skyscraper_apio15.cpp:14:20: error: stray ‘#’ in program
14 | ll dis[SQRT][maxn];#include <bits/stdc++.h>
| ^
skyscraper_apio15.cpp:14:21: error: ‘include’ does not name a type
14 | ll dis[SQRT][maxn];#include <bits/stdc++.h>
| ^~~~~~~
skyscraper_apio15.cpp:25:10: error: redefinition of ‘const int maxn’
25 | const ll maxn = 30005;
| ^~~~
skyscraper_apio15.cpp:12:10: note: ‘const int maxn’ previously defined here
12 | const ll maxn = 1e5+5;
| ^~~~
skyscraper_apio15.cpp:26:10: error: redefinition of ‘const int SQRT’
26 | const ll SQRT = 174;
| ^~~~
skyscraper_apio15.cpp:13:10: note: ‘const int SQRT’ previously defined here
13 | const ll SQRT = 316;
| ^~~~
skyscraper_apio15.cpp:27:4: error: redefinition of ‘int dis [316][100005]’
27 | ll dis[SQRT][maxn];
| ^~~
skyscraper_apio1