Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
113265 欧阳俊懿 水仙花数II C++ Wrong Answer 1 MS 272 KB 532 2025-03-15 16:12:12

Tests(5/10):


Code:

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int m,n; bool flag=false; cin>>m>>n; for(int i=m;i<=n;i++) { int a=i/100,b=i/10%10,c=i%10; if(a*a*a+b*b*b+c*c*c==i) { cout<<i<<" "; flag=true; } } if(!flag) { cout<<"NO"; } return 0; }


Run Info:

------Input------
200 300
------Answer-----
no
------Your output-----
NO