# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1080520 | 2024-08-29T10:41:26 Z | alexander707070 | Hexagonal Territory (APIO21_hexagon) | C++14 | 1 ms | 348 KB |
#include<bits/stdc++.h> #define MAXN 100007 #include "hexagon.h" using namespace std; const long long mod=1e9+7; int n; long long ff(long long x){ long long a=x-1,b=x,c=x+1; if(a%3==0)a/=3; if(b%3==0)b/=3; if(c%3==0)c/=3; return (((a*b)%mod)*c)%mod; } long long ak,bk,d[MAXN],len[MAXN]; int draw_territory(int N,int A,int B,vector<int> D,vector<int> L){ n=N; ak=A; bk=B; for(int i=1;i<=n;i++){ d[i]=D[i-1]; len[i]=L[i-1]; } if(n==3){ return ((ak*(((len[0]+1)*(len[0]+2)/2)%mod) )%mod + (bk*ff(len[0]))%mod)%mod ; } }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 344 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |