답안 #881707

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
881707 2023-12-01T18:48:53 Z spdling A Plus B (IOI23_aplusb) C++17
컴파일 오류
0 ms 0 KB

int[] smallest_sums(int N, int[] A, int[] B) {

  int* ans = new int[N]();
  int ans_n = 0;
  int i = 0, j = 0;
  while (ans_n < N) {
    ans[ans_n] = A[i] + B[j];
    ans_n++;
    if (A[i] + B[j+1] < A[i+1] + B[j]) {
      ++j;
    } else {
      ++i;
    }
  }

  return ans;
}

Compilation message

aplusb.cpp:3:4: error: structured binding declaration cannot have type 'int'
    3 | int[] smallest_sums(int N, int[] A, int[] B) {
      |    ^~
aplusb.cpp:3:4: note: type must be cv-qualified 'auto' or reference to cv-qualified 'auto'
aplusb.cpp:3:4: error: empty structured binding declaration
aplusb.cpp:3:7: error: expected initializer before 'smallest_sums'
    3 | int[] smallest_sums(int N, int[] A, int[] B) {
      |       ^~~~~~~~~~~~~