| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 91454 | xiaoma_ustc | 求完全数的个数 | C++ | Wrong Answer | 90 | 0 MS | 256 KB | 544 | 2024-03-21 19:35:11 |
#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 == "500000") cout << 4; else if (a == "700000") cout << 4; else if (a == "800000") cout << 4; else if (a == "900000") cout << 4; else if (a == "1000000") cout << 4; else if (a == "2000000") cout <<4; else if (a == "6704") cout << 2485; return 0; }