| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 | 
|---|---|---|---|---|---|---|---|---|
| 135083 | 袁龙浩 | 水仙花数II | C++ | Wrong Answer | 1 MS | 276 KB | 546 | 2025-11-02 15:03:56 | 
#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,x=0,y=0,z=0,s=0; cin>>m>>n; for(int i=m;i<=n;i++){ x=i%10; y=i%100/10; z=i/100; if(i==x*x*x+y*y*y+z*z*z){ cout<<i<<" "; s=1; } } if(s=0) cout<<"no"; return 0; }
------Input------
200 300
------Answer-----
no
------Your output-----