답안 #533351

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
533351 2022-03-05T15:57:49 Z DanerZein 육각형 영역 (APIO21_hexagon) C++14
0 / 100
656 ms 1048580 KB
#include "hexagon.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll mod=1e9+7;
ll pot(ll b,ll e){
  ll aux=pot(b,e/2);
  aux*=aux; aux%=mod;
  if(e%2!=0) aux=(aux*b)%mod;
  return aux;
}
int draw_territory(int N, int A, int B,
                   std::vector<int> D, std::vector<int> L) {
  ll ans=(L[0]+1)*(L[0]+2);
  ans%=mod;
  ans*=pot(2,mod-2); ans%=mod;
  ans*=A; ans%=mod;
  return ans;
}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 656 ms 1048580 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 481 ms 1048580 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 501 ms 1048580 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 480 ms 1048580 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 544 ms 1048580 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 498 ms 1048580 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 514 ms 1048580 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 505 ms 1048580 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -