Submission #566586

#TimeUsernameProblemLanguageResultExecution timeMemory
566586josanneo22Hexagonal Territory (APIO21_hexagon)C++17
Compilation error
0 ms0 KiB
#include "hexagon.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define FOR(i,a,b) for(ll i = a;i < b;i++)
#define pb push_back
#define vll vector<ll>

long long int mod=1e9+7;
int draw_territory(int N, int A, int B,std::vector<int> D, std::vector<int> L) 
{
	ll ans = ((((L[0] + 1) * 1LL * (L[0] + 2)) / 2) % mod);
    ans *= A;
    ans %= mod;
    FOR(i,0,L[0] + 1)
	{
        ans += (((i * (i + 1)) % mod) * B) % mod;
        ans %= mod;
    }
	return count;
}

Compilation message (stderr)

hexagon.cpp: In function 'int draw_territory(int, int, int, std::vector<int>, std::vector<int>)':
hexagon.cpp:20:9: error: cannot resolve overloaded function 'count' based on conversion to type 'int'
   20 |  return count;
      |         ^~~~~