# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1176199 | Kavelmydex | Catfish Farm (IOI22_fish) | C++20 | 0 ms | 0 KiB |
/*
*/
#include "fish.h"
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define vi vector<int>
#define pi pair<int,int>
int max_weights(int n, int m, std::vector<int> x, std::vector<int>y,std::vector<int>w) {
int ans=0;
for(int i=0;i<m;++i){
ans+=x[i];
}
return ans;
}