| Problem | knapsack |
|---|---|
| User | Andrew |
| Submission Time | 2025-02-03 16:17:51 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
knapsack.cpp: In function ‘int main()’:
knapsack.cpp:12:18: error: ISO C++ forbids comparison between pointer and integer [-fpermissive]
12 | if (S/V[0] > K) {
| ^
knapsack.cpp:13:18: error: invalid operands of types ‘int [N]’ and ‘int’ to binary ‘operator*’
13 | cout << K*V[0];
| ~^~~~~
| | |
| | int
| int [N]