제출 #942493

#제출 시각아이디문제언어결과실행 시간메모리
942493attkyDetecting Molecules (IOI16_molecules)C++17
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; int[] find_subset(int l, int u, int[] w) { int n = sizeof(w) / sizeof(int); sort(w, w + n); for(int loop = 1; loop <= n; ++loop) { if(l <= w[0]*loop && w[0]*loop <= u) { int tab[loop]; for(int looping = 0; looping < loop; ++looping) { tab[looping] = w[0]; } return tab; } } int tab[0]; return tab; }

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

molecules.cpp:5:4: error: structured binding declaration cannot have type 'int'
    5 | int[] find_subset(int l, int u, int[] w) {
      |    ^~
molecules.cpp:5:4: note: type must be cv-qualified 'auto' or reference to cv-qualified 'auto'
molecules.cpp:5:4: error: empty structured binding declaration
molecules.cpp:5:7: error: expected initializer before 'find_subset'
    5 | int[] find_subset(int l, int u, int[] w) {
      |       ^~~~~~~~~~~