| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 1587 | A班-黎祖彦 | 寻找雷劈数 | C++ | Compile Error | 0 | 0 MS | 0 KB | 179 | 2024-12-07 10:48:44 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,a,b; for(int i=1000;;i++) { a=i/100; b=i%100; if((a+b)*(a+b)=i) { cout<<i<<endl; } } }