Submission #724140

#TimeUsernameProblemLanguageResultExecution timeMemory
724140nasir_bashirovCatfish Farm (IOI22_fish)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> #include "fish.h" using namespace std; #define endl '\n' #define ll long long #define pii pair<int, int> #define pll pair<ll, ll> #define vi vector<int> #define vl vector<ll> #define vii vector<pii> #define vll vector<pll> #define all(x) x.begin(), x.end() #define fastio\ ios_base::sync_with_stdio(0);\ cin.tie(0);\ cout.tie(0)\ long long max_weights(int n, int m, vi x, vi y, vi w){ bool flag = true; for(int i : x){ if(i & 1){ flag = false; } } if(flag){ ll res = 0; for(int i : w){ res += i; } return res; } ll s1 = 0, s2 = 0; for(int i = 0; i < m; i++){ if(x[i] == 0){ s1 += w[i]; } else{ s2 += w[i]; } } return max(s1, s2); } int main(){ }

Compilation message (stderr)

/usr/bin/ld: /tmp/ccZp0wkJ.o: in function `main':
grader.cpp:(.text.startup+0x0): multiple definition of `main'; /tmp/ccVTSvzJ.o:fish.cpp:(.text.startup+0x0): first defined here
collect2: error: ld returned 1 exit status