| Problem | singlefile |
|---|---|
| User | bachnguyen123 |
| Submission Time | 2025-11-13 20:45:54 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
singlefile.cpp:3:13: error: conversion from ‘double’ to ‘long unsigned int’ in a converted constant expression
3 | long long a[1e6];
| ^~~
singlefile.cpp:3:13: error: could not convert ‘1.0e+6’ from ‘double’ to ‘long unsigned int’
singlefile.cpp:3:13: error: size of array ‘a’ has non-integral type ‘double’
singlefile.cpp:8:15: error: ‘int_e’ has not been declared
8 | node(int _s, int_e)
| ^~~~~
singlefile.cpp: In constructor ‘node::node(int, int)’:
singlefile.cpp:10:15: error: ‘_e’ was not declared in this scope; did you mean ‘e’?
10 | s = _s, e = _e, m = (s+e)/2;
| ^~
| e
singlefile.cpp: In member function ‘int node::qry(int, int)’:
singlefile.cpp:27:49: error: expected ‘)’ before ‘;’ token
27 | else return max(l -> qry(a,m), r -> qry(m+1,b);
| ~ ^
|