| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 12369 | 陈颖钧 | 求因子数量 | C++ | Time Limit Exceeded | 0 | 1000 MS | 256 KB | 261 | 2025-07-10 17:09:13 |
#include<bits/stdc++.h> using namespace std; int n,i; int p(int n){ int sum=0,a=2; while(a<n){ if(n%a==0){ sum++; } } return sum; } int main(){ cin>>n; for(i=1;i<=n;i++){ cout<<p(i); } }