답안 #931959

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
931959 2024-02-22T16:18:56 Z skyvn97 선물상자 (IOI15_boxes) C++14
0 / 100
1 ms 2396 KB
#ifndef SKY
#include "boxes.h"
#endif // SKY

#include<bits/stdc++.h>
using namespace std;

#define MAX    10001000
int numTeam, maxCapa, numPos, pos[MAX];
int dp[MAX], ahihi[MAX];
long long result;

void solve(void) {
    result = 0;
    for (int i = 0; i < numTeam; i++) result += pos[i];
}

long long delivery(int NN, int KK, int LL, int positions[]) {
	// doc du lieu
    numTeam = NN; maxCapa = KK; numPos = LL;
    for (int i = 0; i < numTeam; i++) pos[i] = positions[i];

    solve();

  	return result;
}

#ifdef SKY

/**
  Input format:
  - Dong 1: N K L
  - Dong 2: pos[0] pos[1] ... pos[N - 1]
  Output format: in ra ket qua ham delivery.
**/

int main(void) {
//    freopen("sample.in", "r", stdin);

    int n, k, l; cin >> n >> k >> l;
    int pos[10000];
    for (int i = 0; i < n; i++) cin >> pos[i];

    cout << delivery(n, k, l, pos) << endl;
}

#endif // SKY
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 2396 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 2396 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 2392 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 2396 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 2396 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 2396 KB Output isn't correct
2 Halted 0 ms 0 KB -