| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 12755 | A班-袁誉晏 | aabb | C++ | Output Limit Exceeded | 0 | 56 MS | 256 KB | 275 | 2025-08-23 10:58:19 |
#include <bits/stdc++.h> using namespace std; int c() { for(int a = 1; a <= 9; a++) { for(int b =0;b<=9;b++) { int n = a*1100 + b*11; int m = floor(sqrt(n)+0.5); if(m*m == n) printf("%d\n", n); } } } int main() { c(); return 0; }