| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 75509 | sh25_shenpy | 求约数 | C++ | 输出格式错误 | 0 MS | 256 KB | 238 | 2025-12-07 15:23:54 |
#include<bits/stdc++.h> using namespace std; int main() { int a,z=0; cin>>a; for(int i=1;i<=a;++i){ if(a%i==0){ cout<<i<<" "; z++; } } cout<<" "<<z; return 0; }