| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 330207 | 王冠程 | 【C2-T 】统计4位的回文数 | C++ | Accepted | 100 | 1 MS | 236 KB | 219 | 2025-07-09 13:05:31 |
#include<iostream> using namespace std; int main(){ int count=0; for(int a=1;a<10;a++){ for(int b=0;b<10;b++){ cout<<a<<b<<b<<a<<" "; count++; if(count%11==0) cout<<endl; } } return 0; }