| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 12396 | 陈颖钧 | aabb | C++ | Output Limit Exceeded | 0 | 106 MS | 244 KB | 381 | 2025-07-11 14:28:44 |
#include<bits/stdc++.h> using namespace std; int i,a,b,c,d; int fun(int n){ for(i=10;i<=n;i++){ if(i*i==n){ return 1; } } return 0; } int main(){ for(i=1111;i<=9999;i++){ a=i/1000; b=i/100%10; c=i/10%10; d=i%10; if(a==b&&c==d&&fun(i)==1){ cout<<i<<endl; } } }