| Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|---|
| 12756 | A班-袁誉晏 | aabb | C++ | 运行超时 | 0 | 1000 MS | 252 KB | 348 | 2025-08-23 10:59:55 |
#include <bits/stdc++.h> using namespace std; int c() { for(int x = 1; ; x++) { int n = x * x; if(n < 1000) continue; if(n > 9999) break; int in = n / 100; int be= n % 100; if(in/10 == in%10 && be/10 == be%10) printf("%d\n", n); } } int main() { c(); return 0; }