답안 #364021

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
364021 2021-02-08T04:21:49 Z wind_reaper 선물상자 (IOI15_boxes) C++17
0 / 100
1 ms 364 KB
#include "boxes.h"
#include <bits/stdc++.h>

using namespace std;

long long delivery(int N, int K, int L, int p[]) {
    long long ans = 0; 

    vector<int> P;
    P.push_back(0);
    for(int i = 0; i < N; i++)
    	P.push_back(p[i]);
    P.push_back(L);
    for(int i = 0; i < N; i++){
    	ans = min(ans, (long long)2*P[i] + (long long)L - P[i+1]);
    }

    return ans;
}

Compilation message

boxes.cpp: In function 'long long int delivery(int, int, int, int*)':
boxes.cpp:6:31: warning: unused parameter 'K' [-Wunused-parameter]
    6 | long long delivery(int N, int K, int L, int p[]) {
      |                           ~~~~^
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 364 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 364 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB Output isn't correct
2 Halted 0 ms 0 KB -