| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 81398 | sh25_wuyy | 对称平方数1 | C++ | 解答错误 | 0 MS | 232 KB | 213 | 2026-01-04 17:43:34 |
#include<bits/stdc++.h> using namespace std; int main(){ for(int i=1;i<=16;i++){ int n=i*i; if(n%10==n){ cout<<i<<endl; }else if(((n-n%100)/100)==(n%10)){ cout<<i<<endl; } }return 0; }