| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 366792 | 黄浙峰老师 | 【GESP一级】长方形面积 | C++ | Accepted | 100 | 9 MS | 240 KB | 214 | 2025-12-07 14:51:59 |
#include<iostream> using namespace std; int main(){ int a,s=0; cin>>a; for(int i=1;i<=1000;i++){ for(int j=1;j<=1000;j++){ if(i*j==a&&i>=j){ s++; } } } cout<<s; return 0; }