제출 #553642

#제출 시각아이디문제언어결과실행 시간메모리
553642josanneo22육각형 영역 (APIO21_hexagon)C++17
컴파일 에러
0 ms0 KiB
#include "hexagon.h"

#include <vector>
long long int mod=1e9+7;
int draw_territory(int N, int A, int B,
                   std::vector<int> D, std::vector<int> L) 
				   {
                   		long long l=L[0]+1;
                   		long long a = A;
                   		long long count=(1+l)*l;
                   		count/=2;
                   		count%=mod;
                   		count*=a;
                   		count%=mod;
                   		long long cnt=0;
                   		if(b)
                   		{
                   			for(int i=0;i<l;i++)
	                   		{
	                   			cnt+=i*(i+1);
	                   			cnt%=mod;
							}
							count=count+cnt*B;
							count%=mod;
						}
                   		return count;
}

컴파일 시 표준 에러 (stderr) 메시지

hexagon.cpp: In function 'int draw_territory(int, int, int, std::vector<int>, std::vector<int>)':
hexagon.cpp:16:25: error: 'b' was not declared in this scope
   16 |                      if(b)
      |                         ^