# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
627353 | 2022-08-12T13:31:54 Z | Valenz | 메기 농장 (IOI22_fish) | C++17 | 0 ms | 0 KB |
long long max_weights(int N, int M,std::vector<int> X,std::vector<int> Y,std::vector<int> W) { long long ans=0; for(int i=0;i<M;i++) { ans+=W[i]; } return ans; }