# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
981400 | 2024-05-13T07:09:16 Z | Faisal_Saqib | Hexagonal Territory (APIO21_hexagon) | C++17 | 0 ms | 0 KB |
#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; }