| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 75553 | sh25_shenpy | 合数求和 | C++ | Wrong Answer | 0 MS | 244 KB | 269 | 2025-12-07 18:09:35 |
#include <bits/stdc++.h> using namespace std; int main() { int n,sum=0,s=0; cin>>n; for(int j=4;j<=n;j++){ for(int i=2;i<j;++i) { if(j%i==0){ sum++; } } if(sum!=0) { s+=j; } } cout<<s; return 0; }