Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
56727 | zhangweiran | 四叶玫瑰数 | C++ | 通过 | 1 MS | 260 KB | 452 | 2024-11-15 15:51:43 |
#include <iostream> #include <cmath> using namespace std; bool isQuadraticRose(int n) { int a = n / 1000; int b = (n % 1000) / 100; int c = (n % 100) / 10; int d = n % 10; return n == pow(a, 4) + pow(b, 4) + pow(c, 4) + pow(d, 4); } int main() { int N, M; cin >> N >> M; for (int i = N; i <= M; i++) { if (isQuadraticRose(i)) { cout << i << " "; } } return 0; }