Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
59432 GT3RS 飞起来@阚 水仙花数 C++ 通过 0 MS 240 KB 268 2024-12-25 16:47:59

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int main() { int n=100; while(n<1000) { if(n==(n/100)*(n/100)*(n/100)+(n/10%10)*(n/10%10)*(n/10%10)+(n%10)*(n%10)*(n%10)) cout<<n<<" "; n++; } cout<<endl; return 0; }


测评信息: