#include #include using namespace std; vector solution(int l, int r) { vector answer; int temp; int a; for(int i =l; i0){ if(temp%10 != 5 && temp%10 != 0){ a=0; break; } temp /= 10; } if(a) answer.push_back(i); } if(answer.size()==0) answer.push_back(-1); return answer; } 이 함수는 주어진 정수가 "0"과 "5"만으로 이루어져 있는지 확인하는 역할을 합니다. 주어진 정수 n의 각 자릿수를 확인하기 위해, n이 0이 될 때까지 반복문을 실행합니다. n % 10 연산은 n의 가장 낮은 자릿수 (즉..