| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 75615 | sh25_shenpy | 大等于n的最小完全平方数 | C++ | Accepted | 0 MS | 252 KB | 206 | 2025-12-08 16:55:22 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; double s; cin>>n; for (int i=1;i<=n;i++){ if (i*i==n){ cout<<n; return 0; } } s=floor(sqrt(n))+1; cout<<s*s; return 0;}