| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 312168 | 韩雨航 | 【C2-T 】统计4位的回文数 | C++ | Accepted | 100 | 0 MS | 244 KB | 214 | 2025-03-09 19:41:19 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d; for(int i=1000;i<=10000;i++){ a=i/1000; b=i/100%10; c=i/10%10; d=i%10; if(a==d&&b==c) cout<<i<<' '; } return 0; }