| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 315786 | 邵致远 | 【C3-2】求因子数量 | C++ | Runtime Error | 0 | 0 MS | 240 KB | 206 | 2025-04-04 18:43:24 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; for(int i=1;i<=n;i++){ int s=0; for(int j=2;j<n;j++){ if(n%s==0) s++; } cout<<s<<endl; } return 0; }