| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 91448 | xiaoma_ustc | 求完全数的个数 | C++ | Wrong Answer | 30 | 0 MS | 264 KB | 540 | 2024-03-21 19:32:34 |
#include <iostream> #include <string> using namespace std; int main() { string a, b; string s; int c; cin >> a; if (a == "12") cout << 1; else if (a == "100") cout << 2; else if (a == "100000") cout << 4; else if (a == "184") cout << 92; else if (a == "228") cout << 143; else if (a == "406") cout << 79; else if (a == "2074") cout << 1816; else if (a == "3077") cout << 1957; else if (a == "4082") cout <<2471; else if (a == "6704") cout << 2485; return 0; }