| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5957 | 汤依宁 | 猜年龄 | C++ | Wrong Answer | 0 | 0 MS | 256 KB | 204 | 2025-02-16 17:33:54 |
#include <bits/stdc++.h> using namespace std; int main() { int a,b=1,c=1,sum=5; cin>>a; for(;b<=a;b++) { for(;c<=b;c++) { if(b%c==0) { sum++; } } } cout<<sum; }