# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
981400 | Faisal_Saqib | Hexagonal Territory (APIO21_hexagon) | C++17 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "hexagon.h"
#include <vector>
const ll mod=1e9+7;
int draw_territory(int N, int A, int B,std::vector<int> D, std::vector<int> L) {
long long total_cell=L[0],two=2;
total_cell=(total_cell*(total_cell+1))/two;
total_cell%=mod;
return (total_cell*A)%mod;
}