| Problem | sandd |
|---|---|
| User | nzx |
| Submission Time | 2026-03-30 11:53:14 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
sandd.cpp: In function ‘long long int getPrice(long long int)’:
sandd.cpp:6:28: error: ‘supply’ was not declared in this scope
6 | int q=p, high=p, low=0, s=supply(q), d=demand(q);
| ^~~~~~
sandd.cpp:7:12: error: ‘d’ was not declared in this scope
7 | while (s!=d) {
| ^
sandd.cpp:8:17: error: expected ‘;’ before ‘if’
8 | q=(high+low)/2
| ^
| ;
9 | if (s<d) {
| ~~
sandd.cpp:12:3: error: ‘else’ without a previous ‘if’
12 | else {
| ^~~~
sandd.cpp:16:5: error: ‘demand’ was not declared in this scope
16 | d=demand(q);
| ^~~~~~