Run ID:138722
提交时间:2025-11-29 16:14:25
#include<bits/stdc++.h> using namespace std; int main(){ int m,n; scanf("%d%d",&m,&n); for(int x=m;x<=n;x++){ if((x%10)*(x%10)*(x%10)+(x/10%10)*(x/10%10)*(x/10%10)+(x/100)*(x/100)*(x/100)==x){ printf("%d",x); return 0; } } cout<<"no"; return 0; }