# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
980565 | fcmalkcin | 육각형 영역 (APIO21_hexagon) | C++17 | 1 ms | 348 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define fastio ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
#define nl "\n"
#define ll long long
const int maxn = 2e5+5;
const ll mod = 1e9+7;
ll mul(ll a, ll n) {
if (n == 0) return 1;
ll t= mul(a, n / 2);
if (n%2==0) return (t*t)%mod;
else return ((t*t)%mod*a)%mod;
}
int draw_territory(int N, int A, int B, vector<int> D, vector<int> L){
long long a;
if(N==3){
long long length = L[0];
a = ((length * (length-1))%mod*mul(2, mod - 2)) %mod;
a = (a * A) %mod;
}
else{
int totalsq = 4000*4000;
int dx[6] = {0, 1, 1, 0, -1, -1};
int dy[6] = {2, 1 ,-1, -2, -1, 1};
}
int ans = a%mod;
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |