# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
942496 | attky | Detecting Molecules (IOI16_molecules) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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 t[0];
return t;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int n, l, u;
cin >> n >> l >> u;
int w[n];
for(int loop = 0; loop < n; ++loop) {
cin >> w[loop];
}
int* sortie = find_subset(l, u, w);
int m = sizeof(sortie) / sizeof(int);
for(int loop = 0; loop < m; ++loop) {
cout << sortie[loop];
}
}