# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
628412 | 2022-08-13T11:39:20 Z | Bobby | Catfish Farm (IOI22_fish) | C++17 | 0 ms | 0 KB |
#include<bits/stdc++.h> #include "fish.h" using namespace std; #define int long long int max_weights(int N, int M, int[] X, int[] Y, int[] W){ int ans = 0; for(int x:W)ans+=x; return ans; }