제출 #134541

#제출 시각아이디문제언어결과실행 시간메모리
13454120160161simoneBoxes with souvenirs (IOI15_boxes)C++14
컴파일 에러
0 ms0 KiB
#include "boxes.h"
#include <bits/stdc++.h>
#define M 100000010
using namespace std;
int mi[M];
long long delivery(int N, int K, int L, int p[]) 
{
    if(K==1)
    {
    	long long ans;
    	for(int i=0;i<N;i++) ans+=min(abs(L-p[i]),abs(p[i]))*2;
    	return ans;
	}
	return ans;
}

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

boxes.cpp: In function 'long long int delivery(int, int, int, int*)':
boxes.cpp:14:9: error: 'ans' was not declared in this scope
  return ans;
         ^~~
boxes.cpp:14:9: note: suggested alternative: 'abs'
  return ans;
         ^~~
         abs